labeling static vultr hosts

This commit is contained in:
shockrah 2024-06-11 22:47:26 -07:00
parent 5d93ff8295
commit b6e3010126
2 changed files with 2 additions and 0 deletions

View File

@ -18,4 +18,5 @@ resource "vultr_instance" "websites" {
} }
ssh_key_ids = [ vultr_ssh_key.host.id ] ssh_key_ids = [ vultr_ssh_key.host.id ]
firewall_group_id = vultr_firewall_group.host.id firewall_group_id = vultr_firewall_group.host.id
label = "Websites"
} }

View File

@ -16,6 +16,7 @@ resource vultr_instance immich {
ssh_key_ids = [ vultr_ssh_key.immich.id ] ssh_key_ids = [ vultr_ssh_key.immich.id ]
firewall_group_id = vultr_firewall_group.host.id firewall_group_id = vultr_firewall_group.host.id
label = "Immich Server"
} }