This commit is contained in:
havelight-ee
2023-05-04 22:42:49 +09:00
parent 73f5df0334
commit 1e5b0b4487
9 changed files with 564 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
resource "aws_route53_record" "monitoring" {
zone_id = "${var.datasaker-io}"
name = "monitoring.kr.datasaker.io"
type = "A"
ttl = "300"
records = [aws_eip.monitoring_eip.public_ip]
}