Skip to content

Commit

Permalink
feat: added ribbonstudios.com
Browse files Browse the repository at this point in the history
  • Loading branch information
cecilia-sanare authored Apr 9, 2024
1 parent e69a1d0 commit afcff3a
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions tofu/zones.tf
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,22 @@ module "protontweaks_com" {
]
}

module "ribbonstudios_com" {
source = "./modules/zone"
domain = "ribbonstudios.com"

records = [
{
type = "A"
records = local.github_pages_ipv4
},
{
type = "AAAA"
records = local.github_pages_ipv6
},
]
}

output "name_servers" {
value = {
"cecilias.me" = module.cecilias_me.name_servers
Expand All @@ -184,5 +200,6 @@ output "name_servers" {
"charcoal.gg" = module.charcoal_gg.name_servers
"sanare.dev" = module.sanare_dev.name_servers
"protontweaks.com" = module.protontweaks_com.name_servers
"ribbonstudios.com" = module.ribbonstudios_com.name_servers
}
}

0 comments on commit afcff3a

Please sign in to comment.