mirror of https://gitlab.com/bashrc2/epicyon
10 lines
230 B
Terraform
10 lines
230 B
Terraform
|
output "epicyon_domain" {
|
||
|
description = "The name of the record"
|
||
|
value = format("https://%s", var.domain)
|
||
|
}
|
||
|
|
||
|
output "ipv4_address" {
|
||
|
description = "The instance ip"
|
||
|
value = aws_instance.epicyon_web.public_ip
|
||
|
}
|