Skip to content

Commit

Permalink
enh: Add some missing examples in doc
Browse files Browse the repository at this point in the history
  • Loading branch information
smutel committed Sep 22, 2023
1 parent bca9952 commit 0673b06
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 0 deletions.
3 changes: 3 additions & 0 deletions examples/data-sources/netbox_tenancy_contact/data-source.tf
@@ -0,0 +1,3 @@
data "netbox_tenancy_contact" "tenancy_contact_test" {
name = "TestContact"
}
@@ -0,0 +1,3 @@
data "netbox_tenancy_contact_group" "tenancy_contact_group_test" {
slug = "TestContactGroup"
}
@@ -0,0 +1,3 @@
data "netbox_tenancy_contact_role" "tenancy_contact_role_test" {
slug = "TestContactRole"
}
3 changes: 3 additions & 0 deletions examples/data-sources/netbox_tenancy_tenant/data-source.tf
@@ -0,0 +1,3 @@
data "netbox_tenancy_tenant" "tenancy_tenant" {
slug = "TestTenant"
}
@@ -0,0 +1,3 @@
data "netbox_tenancy_tenant_group" "tenancy_tenant_group" {
slug = "TestTenantGroup"
}
@@ -0,0 +1,4 @@
data "netbox_virtualization_cluster" "virtualization_cluster" {
name = "TestCluster"
site_id = 1
}

0 comments on commit 0673b06

Please sign in to comment.