diff --git a/gen/definitions/properties.yaml b/gen/definitions/properties.yaml index ac1145f6c..7658a625f 100644 --- a/gen/definitions/properties.yaml +++ b/gen/definitions/properties.yaml @@ -735,8 +735,6 @@ fvRsNodeAtt: encapsulation: "vlan-100" resource_required: encapsulation: "vlan-101" - datasource_required: - encapsulation: "vlan-101" datasource_non_existing: target_dn: "topology/pod-2/paths-201/pathep-[eth1/1]" parents: @@ -834,8 +832,6 @@ fvRsPathAtt: primary_encapsulation: "vlan-203" resource_required: encapsulation: "vlan-201" - datasource_required: - encapsulation: "vlan-201" datasource_non_existing: target_dn: "topology/pod-2/paths-201/pathep-[eth1/1]" documentation: diff --git a/gen/testvars/fvRsNodeAtt.yaml b/gen/testvars/fvRsNodeAtt.yaml index c48307b36..547d2734d 100644 --- a/gen/testvars/fvRsNodeAtt.yaml +++ b/gen/testvars/fvRsNodeAtt.yaml @@ -13,7 +13,6 @@ datasource_non_existing: target_dn: "topology/pod-2/paths-201/pathep-[eth1/1]" datasource_required: - encapsulation: "vlan-101" target_dn: "test_t_dn" resource_required: diff --git a/gen/testvars/fvRsPathAtt.yaml b/gen/testvars/fvRsPathAtt.yaml index 299c7f264..b6f771a74 100644 --- a/gen/testvars/fvRsPathAtt.yaml +++ b/gen/testvars/fvRsPathAtt.yaml @@ -14,7 +14,6 @@ datasource_non_existing: target_dn: "topology/pod-2/paths-201/pathep-[eth1/1]" datasource_required: - encapsulation: "vlan-201" target_dn: "test_t_dn" resource_required: diff --git a/internal/provider/data_source_aci_relation_to_static_leaf_test.go b/internal/provider/data_source_aci_relation_to_static_leaf_test.go index a0fe9e9d7..22160c77f 100644 --- a/internal/provider/data_source_aci_relation_to_static_leaf_test.go +++ b/internal/provider/data_source_aci_relation_to_static_leaf_test.go @@ -21,7 +21,6 @@ func TestAccDataSourceFvRsNodeAttWithFvAEPg(t *testing.T) { Config: testConfigFvRsNodeAttDataSourceDependencyWithFvAEPg, ExpectNonEmptyPlan: false, Check: resource.ComposeAggregateTestCheckFunc( - resource.TestCheckResourceAttr("data.aci_relation_to_static_leaf.test", "encapsulation", "vlan-101"), resource.TestCheckResourceAttr("data.aci_relation_to_static_leaf.test", "target_dn", "topology/pod-1/node-101"), resource.TestCheckResourceAttr("data.aci_relation_to_static_leaf.test", "annotation", "orchestrator:terraform"), resource.TestCheckResourceAttr("data.aci_relation_to_static_leaf.test", "deployment_immediacy", "lazy"), @@ -41,7 +40,6 @@ func TestAccDataSourceFvRsNodeAttWithFvAEPg(t *testing.T) { const testConfigFvRsNodeAttDataSourceDependencyWithFvAEPg = testConfigFvRsNodeAttMinDependencyWithFvAEPg + ` data "aci_relation_to_static_leaf" "test" { parent_dn = aci_application_epg.test.id - encapsulation = "vlan-101" target_dn = "topology/pod-1/node-101" depends_on = [aci_relation_to_static_leaf.test] } diff --git a/internal/provider/data_source_aci_relation_to_static_path_test.go b/internal/provider/data_source_aci_relation_to_static_path_test.go index c8c29a826..7409c6b96 100644 --- a/internal/provider/data_source_aci_relation_to_static_path_test.go +++ b/internal/provider/data_source_aci_relation_to_static_path_test.go @@ -21,7 +21,6 @@ func TestAccDataSourceFvRsPathAttWithFvAEPg(t *testing.T) { Config: testConfigFvRsPathAttDataSourceDependencyWithFvAEPg, ExpectNonEmptyPlan: false, Check: resource.ComposeAggregateTestCheckFunc( - resource.TestCheckResourceAttr("data.aci_relation_to_static_path.test", "encapsulation", "vlan-201"), resource.TestCheckResourceAttr("data.aci_relation_to_static_path.test", "target_dn", "topology/pod-1/paths-101/pathep-[eth1/1]"), resource.TestCheckResourceAttr("data.aci_relation_to_static_path.test", "annotation", "orchestrator:terraform"), resource.TestCheckResourceAttr("data.aci_relation_to_static_path.test", "deployment_immediacy", "lazy"), @@ -42,7 +41,6 @@ func TestAccDataSourceFvRsPathAttWithFvAEPg(t *testing.T) { const testConfigFvRsPathAttDataSourceDependencyWithFvAEPg = testConfigFvRsPathAttMinDependencyWithFvAEPg + ` data "aci_relation_to_static_path" "test" { parent_dn = aci_application_epg.test.id - encapsulation = "vlan-201" target_dn = "topology/pod-1/paths-101/pathep-[eth1/1]" depends_on = [aci_relation_to_static_path.test] }