feat: Added terraform config... just a basic one at first
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
output "dev_ipv4" {
|
||||
value = hcloud_server.dev.ipv4_address
|
||||
}
|
||||
|
||||
output "dev_private_ipv4" {
|
||||
value = var.dev_private_ip
|
||||
}
|
||||
|
||||
output "prod_ipv4" {
|
||||
value = hcloud_server.prod.ipv4_address
|
||||
}
|
||||
|
||||
output "prod_private_ipv4" {
|
||||
value = var.prod_private_ip
|
||||
}
|
||||
|
||||
output "vpn_ipv4" {
|
||||
value = hcloud_server.vpn.ipv4_address
|
||||
}
|
||||
Reference in New Issue
Block a user