diff --git a/docs/data-sources/tenancy_contact.md b/docs/data-sources/tenancy_contact.md index 68b6a17de..e9cfa8f12 100644 --- a/docs/data-sources/tenancy_contact.md +++ b/docs/data-sources/tenancy_contact.md @@ -10,7 +10,13 @@ description: |- +## Example Usage +```terraform +data "netbox_tenancy_contact" "tenancy_contact_test" { + name = "TestContact" +} +``` ## Schema diff --git a/docs/data-sources/tenancy_contact_group.md b/docs/data-sources/tenancy_contact_group.md index 2139c3eb8..03920eaa0 100644 --- a/docs/data-sources/tenancy_contact_group.md +++ b/docs/data-sources/tenancy_contact_group.md @@ -10,7 +10,13 @@ description: |- +## Example Usage +```terraform +data "netbox_tenancy_contact_group" "tenancy_contact_group_test" { + slug = "TestContactGroup" +} +``` ## Schema diff --git a/docs/data-sources/tenancy_contact_role.md b/docs/data-sources/tenancy_contact_role.md index f881a4340..fb70800fd 100644 --- a/docs/data-sources/tenancy_contact_role.md +++ b/docs/data-sources/tenancy_contact_role.md @@ -10,7 +10,13 @@ description: |- +## Example Usage +```terraform +data "netbox_tenancy_contact_role" "tenancy_contact_role_test" { + slug = "TestContactRole" +} +``` ## Schema diff --git a/docs/data-sources/tenancy_tenant.md b/docs/data-sources/tenancy_tenant.md index 78431cd14..80945fc35 100644 --- a/docs/data-sources/tenancy_tenant.md +++ b/docs/data-sources/tenancy_tenant.md @@ -10,7 +10,13 @@ description: |- +## Example Usage +```terraform +data "netbox_tenancy_tenant" "tenancy_tenant" { + slug = "TestTenant" +} +``` ## Schema diff --git a/docs/data-sources/tenancy_tenant_group.md b/docs/data-sources/tenancy_tenant_group.md index e0f24f7b6..62261d3c9 100644 --- a/docs/data-sources/tenancy_tenant_group.md +++ b/docs/data-sources/tenancy_tenant_group.md @@ -10,7 +10,13 @@ description: |- +## Example Usage +```terraform +data "netbox_tenancy_tenant_group" "tenancy_tenant_group" { + slug = "TestTenantGroup" +} +``` ## Schema diff --git a/docs/data-sources/virtualization_cluster.md b/docs/data-sources/virtualization_cluster.md index 7faf39cbc..1de3d09c0 100644 --- a/docs/data-sources/virtualization_cluster.md +++ b/docs/data-sources/virtualization_cluster.md @@ -10,7 +10,14 @@ description: |- - +## Example Usage + +```terraform +data "netbox_virtualization_cluster" "virtualization_cluster" { + name = "TestCluster" + site_id = 1 +} +``` ## Schema