Skip to content

Instantly share code, notes, and snippets.

@stfsy
Created October 3, 2021 12:46
Show Gist options
  • Select an option

  • Save stfsy/3ff7712d93e8565d0842561d3a32eae9 to your computer and use it in GitHub Desktop.

Select an option

Save stfsy/3ff7712d93e8565d0842561d3a32eae9 to your computer and use it in GitHub Desktop.
resource "hcloud_server" "server" {
for_each = var.server_names
name = each.key
image = "debian-10"
labels = {
"role" = "frontend"
"environment" = "production"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment