parameterizing load balancer public ip

This commit is contained in:
shockrah 2024-02-27 23:04:59 -08:00
parent 39982e516d
commit 76a47b55a1
2 changed files with 10 additions and 0 deletions

View File

@ -10,3 +10,10 @@ resource vultr_dns_record sample_dns {
# data = vultr_kubernetes.athens.ip
type = "A"
}
resource vultr_dns_record hello_dns {
domain = vultr_dns_domain.temprah_lab.id
name = "hello"
data = "45.32.68.232"
type = "A"
}

View File

@ -38,4 +38,7 @@ variable lab_domain {
type = string
}
variable lb_ip4 {
type = string
}