Skip to content

Commit

Permalink
feat: new droplet IP
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Gleich <[email protected]>
  • Loading branch information
gleich committed Aug 15, 2024
1 parent fbfd92c commit 93b7d6f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions mattglei.ch.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ resource "cloudflare_record" "mattgleich_dev_wildcard" {
zone_id = var.zone_id_mattgleich
type = "A"
name = "*.dev"
value = "146.190.64.158"
value = "198.199.69.145"
}

resource "cloudflare_record" "mattgleich_dev" {
zone_id = var.zone_id_mattgleich
type = "A"
name = "dev"
value = "146.190.64.158"
value = "198.199.69.145"
}

resource "cloudflare_record" "mattgleich_www" {
Expand Down Expand Up @@ -96,7 +96,7 @@ resource "cloudflare_record" "mattgleich_terminal" {
zone_id = var.zone_id_mattgleich
type = "A"
name = "terminal"
value = "146.190.64.158"
value = "198.199.69.145"
}

resource "cloudflare_record" "mattgleich_google_search_console" {
Expand Down
6 changes: 3 additions & 3 deletions mattgleich.com.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ resource "cloudflare_record" "mattgleich_com_dev_wildcard" {
zone_id = var.zone_id_mattgleich_com
type = "A"
name = "*.dev"
value = "146.190.64.158"
value = "198.199.69.145"
}

resource "cloudflare_record" "mattgleich_com_dev" {
zone_id = var.zone_id_mattgleich_com
type = "A"
name = "dev"
value = "146.190.64.158"
value = "198.199.69.145"
}

resource "cloudflare_record" "mattgleich_com_www" {
Expand Down Expand Up @@ -95,7 +95,7 @@ resource "cloudflare_record" "mattgleich_com_terminal" {
zone_id = var.zone_id_mattgleich_com
type = "A"
name = "terminal"
value = "146.190.64.158"
value = "198.199.69.145"
}

resource "cloudflare_record" "mattgleich_com_google_search_console" {
Expand Down

0 comments on commit 93b7d6f

Please sign in to comment.