1
0

initial commit

This commit is contained in:
xpk
2026-02-13 15:44:24 +08:00
parent 66be8224f4
commit 09ce4c881a
570 changed files with 61807 additions and 0 deletions
@@ -0,0 +1,19 @@
# r53-record-geo sub module
Create route53 geolocation records
## Example
```hcl
module "r53-www" {
source = "../../modules/networking/r53-record-geo"
record_name = "www"
record_type = "A"
record_values = ["192.168.33.10"]
set_identifier = "Global web servers"
record_type_locational = "A"
record_values_locational = ["172.17.16.10"]
set_identifier_locational = "China web servers"
country_code = "CN"
zone_id = aws_route53_zone.zone.zone_id
}
```