Add 0rng.one domain
This commit is contained in:
parent
3b6b643d95
commit
f3c4c75d2c
1 changed files with 19 additions and 0 deletions
19
terraform/0rng.one.tf
Normal file
19
terraform/0rng.one.tf
Normal file
|
@ -0,0 +1,19 @@
|
|||
resource "cloudflare_zone" "orngone" {
|
||||
zone = "0rng.one"
|
||||
}
|
||||
|
||||
resource "cloudflare_record" "orngone_git" {
|
||||
zone_id = cloudflare_zone.orngone.id
|
||||
name = "git"
|
||||
value = vultr_server.casey.main_ip
|
||||
type = "A"
|
||||
ttl = 1
|
||||
}
|
||||
|
||||
resource "cloudflare_record" "orngone_website" {
|
||||
zone_id = cloudflare_zone.orngone.id
|
||||
name = "the"
|
||||
value = "theorangeone-net.netlify.com"
|
||||
type = "CNAME"
|
||||
ttl = 1
|
||||
}
|
Loading…
Reference in a new issue