Skip to content

Commit

Permalink
🐛 Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
twink0r authored and fbreckle committed Jul 30, 2024
1 parent df828c2 commit 6de53fb
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions netbox/data_source_netbox_virtual_machines_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -297,35 +297,35 @@ resource "netbox_tag" "servicea" {
}
resource "netbox_virtual_machine" "test0" {
name = "%[1]s_0"
cluster_id = netbox_cluster.test.id
site_id = netbox_site.test.id
comments = "thisisacomment"
memory_mb = 1024
disk_size_gb = 256
tenant_id = netbox_tenant.test.id
role_id = netbox_device_role.test.id
platform_id = netbox_platform.test.id
vcpus = 4
name = "%[1]s_0"
cluster_id = netbox_cluster.test.id
site_id = netbox_site.test.id
comments = "thisisacomment"
memory_mb = 1024
disk_size_gb = 256
tenant_id = netbox_tenant.test.id
role_id = netbox_device_role.test.id
platform_id = netbox_platform.test.id
vcpus = 4
status = "active"
tags = [
tags = [
netbox_tag.servicea.name,
]
}
resource "netbox_virtual_machine" "test1" {
name = "%[1]s_1"
cluster_id = netbox_cluster.test.id
site_id = netbox_site.test.id
comments = "thisisacomment"
memory_mb = 1024
disk_size_gb = 256
tenant_id = netbox_tenant.test.id
role_id = netbox_device_role.test.id
platform_id = netbox_platform.test.id
vcpus = 4
name = "%[1]s_1"
cluster_id = netbox_cluster.test.id
site_id = netbox_site.test.id
comments = "thisisacomment"
memory_mb = 1024
disk_size_gb = 256
tenant_id = netbox_tenant.test.id
role_id = netbox_device_role.test.id
platform_id = netbox_platform.test.id
vcpus = 4
status = "decommissioning"
tags = [
tags = [
netbox_tag.servicea.name,
]
}`, testName)
Expand Down

0 comments on commit 6de53fb

Please sign in to comment.