Skip to content

Commit

Permalink
feat: f1dev record
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Gleich <[email protected]>
  • Loading branch information
gleich committed Aug 20, 2024
1 parent 93b7d6f commit 295eb65
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
14 changes: 14 additions & 0 deletions mattglei.ch.tf
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,20 @@ resource "cloudflare_record" "mattgleich_dev" {
value = "198.199.69.145"
}

resource "cloudflare_record" "mattgleich_f1dev_wildcard" {
zone_id = var.zone_id_mattgleich
type = "A"
name = "*.f1dev"
value = "159.65.230.177"
}

resource "cloudflare_record" "mattgleich_f1dev" {
zone_id = var.zone_id_mattgleich
type = "A"
name = "f1dev"
value = "159.65.230.177"
}

resource "cloudflare_record" "mattgleich_www" {
zone_id = var.zone_id_mattgleich
type = "CNAME"
Expand Down
14 changes: 14 additions & 0 deletions mattgleich.com.tf
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,20 @@ resource "cloudflare_record" "mattgleich_com_dev" {
value = "198.199.69.145"
}

resource "cloudflare_record" "mattgleich_com_f1dev_wildcard" {
zone_id = var.zone_id_mattgleich_com
type = "A"
name = "*.f1dev"
value = "159.65.230.177"
}

resource "cloudflare_record" "mattgleich_com_f1dev" {
zone_id = var.zone_id_mattgleich_com
type = "A"
name = "f1dev"
value = "159.65.230.177"
}

resource "cloudflare_record" "mattgleich_com_www" {
zone_id = var.zone_id_mattgleich_com
type = "CNAME"
Expand Down

0 comments on commit 295eb65

Please sign in to comment.