Created
October 3, 2021 12:46
-
-
Save stfsy/3ff7712d93e8565d0842561d3a32eae9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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