mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
feat(utsuho): new host
This commit is contained in:
parent
c37901e4d0
commit
64354376c7
9 changed files with 167 additions and 4 deletions
|
|
@ -58,6 +58,34 @@ output "cloudflare_tunnel_cname_keycloak" {
|
|||
value = module.keycloak.cname
|
||||
}
|
||||
|
||||
variable "cloudflare_tunnel_secret_utsuho" {
|
||||
type = string
|
||||
sensitive = true
|
||||
}
|
||||
|
||||
module "utsuho" {
|
||||
source = "./tunnel"
|
||||
name = "utsuho"
|
||||
secret = var.cloudflare_tunnel_secret_utsuho
|
||||
account_id = var.cloudflare_account_id
|
||||
zone_id = cloudflare_zone.gensokyo-zone_zone.id
|
||||
subdomains = [
|
||||
]
|
||||
}
|
||||
|
||||
output "cloudflare_tunnel_id_utsuho" {
|
||||
value = module.utsuho.id
|
||||
}
|
||||
|
||||
output "cloudflare_tunnel_token_utsuho" {
|
||||
value = module.utsuho.token
|
||||
sensitive = true
|
||||
}
|
||||
|
||||
output "cloudflare_tunnel_cname_utsuho" {
|
||||
value = module.utsuho.cname
|
||||
}
|
||||
|
||||
variable "cloudflare_tunnel_secret_tewi" {
|
||||
type = string
|
||||
sensitive = true
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue