Skip to content

Commit

Permalink
[ignore] Generate with properties modifications (forgot to do go gene…
Browse files Browse the repository at this point in the history
…rate...)
  • Loading branch information
gmicol committed Apr 30, 2024
1 parent b6e6c95 commit 068b167
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 26 deletions.
2 changes: 1 addition & 1 deletion docs/data-sources/netflow_monitor_policy.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Data source for Netflow Monitor Policy
data "aci_netflow_monitor_policy" "example_tenant" {
parent_dn = aci_tenant.example.id
name = "test_name"
name = "netfow_monitor"
}
```
Expand Down
4 changes: 2 additions & 2 deletions docs/resources/netflow_monitor_policy.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ The configuration snippet below creates a Netflow Monitor Policy with only requi
resource "aci_netflow_monitor_policy" "example_tenant" {
parent_dn = aci_tenant.example.id
name = "test_name"
name = "netfow_monitor"
}
```
Expand All @@ -51,7 +51,7 @@ resource "aci_netflow_monitor_policy" "full_example_tenant" {
parent_dn = aci_tenant.example.id
annotation = "annotation"
description = "description"
name = "test_name"
name = "netfow_monitor"
name_alias = "name_alias"
owner_key = "owner_key"
owner_tag = "owner_tag"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

data "aci_netflow_monitor_policy" "example_tenant" {
parent_dn = aci_tenant.example.id
name = "test_name"
name = "netfow_monitor"
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ resource "aci_netflow_monitor_policy" "full_example_tenant" {
parent_dn = aci_tenant.example.id
annotation = "annotation"
description = "description"
name = "test_name"
name = "netfow_monitor"
name_alias = "name_alias"
owner_key = "owner_key"
owner_tag = "owner_tag"
Expand Down
2 changes: 1 addition & 1 deletion examples/resources/aci_netflow_monitor_policy/resource.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

resource "aci_netflow_monitor_policy" "example_tenant" {
parent_dn = aci_tenant.example.id
name = "test_name"
name = "netfow_monitor"
}
6 changes: 3 additions & 3 deletions gen/testvars/netflowMonitorPol.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ default:
owner_tag: ""

datasource_non_existing:
name: "non_existing_name"
name: "netfow_monitor_non_existing"

datasource_required:
name: "test_name"
name: "netfow_monitor"

resource_required:
name: "test_name"
name: "netfow_monitor"

all:
annotation: "annotation"
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 14 additions & 14 deletions internal/provider/resource_aci_netflow_monitor_policy_test.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 068b167

Please sign in to comment.