[REFACTOR] Split out current terraform a little

This commit is contained in:
Kat Inskip 2023-04-29 15:04:13 -07:00
parent b18e5337f0
commit 0862be524a
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
14 changed files with 226 additions and 389 deletions

11
hcloud-network.tf Normal file
View file

@ -0,0 +1,11 @@
resource "hcloud_network" "network" {
name = "network-17a07f9"
ip_range = "10.0.0.0/16"
}
resource "hcloud_network_subnet" "subnet" {
network_id = hcloud_network.network.id
type = "cloud"
network_zone = "us-west"
ip_range = "10.0.1.0/24"
}