init
This commit is contained in:
commit
52843aa9e7
13 changed files with 920 additions and 0 deletions
20
outputs.tf
Normal file
20
outputs.tf
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
output "prod_ip" {
|
||||
value = hcloud_server.prod.ipv4_address
|
||||
}
|
||||
|
||||
output "ops_ip" {
|
||||
value = hcloud_server.ops.ipv4_address
|
||||
}
|
||||
|
||||
output "urls" {
|
||||
value = {
|
||||
app = "https://${var.domain}"
|
||||
staging = "https://staging.${var.domain}"
|
||||
source = "https://source.${var.domain}"
|
||||
ci = "https://ci.${var.domain}"
|
||||
}
|
||||
}
|
||||
|
||||
output "r2_bucket" {
|
||||
value = cloudflare_r2_bucket.assets.name
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue