commented out some un-needed keepers in random_pet.servers

This commit is contained in:
Karim Naufal 2022-03-08 08:27:48 +01:00
parent c2f8c747c5
commit 56fc95763a

View File

@ -7,14 +7,16 @@ resource "random_pet" "server" {
name = var.name
public_key = var.public_key
additional_public_keys = join(",", var.additional_public_keys)
ssh_keys = join(",", var.ssh_keys)
firewall_ids = join(",", var.firewall_ids)
placement_group_id = var.placement_group_id
labels = join(",", [for k, v in var.labels: "${k}=${v}" ])
location = var.location
labels = join(",", [for k, v in var.labels : "${k}=${v}"])
ipv4_subnet_id = var.ipv4_subnet_id
private_ipv4 = var.private_ipv4
server_type = var.server_type
# Excluding these for now as they are part of the ignore_changes below
#ssh_keys = join(",", var.ssh_keys)
#location = var.location
}
}