Skip to content

Commit

Permalink
additional domain name
Browse files Browse the repository at this point in the history
  • Loading branch information
craigbuckler committed Jan 4, 2024
1 parent 34344c2 commit 1f68ef2
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,19 @@ const dnsZone = new gcp.dns.ManagedZone(managedZoneName, {
description: "Managed zone for " + domainName,
});


// Define another domain name and a suitable name for the managed zone
const domainNameCom = "teztnets.com";
const managedZoneNameCom = "teztnetscom-zone";

// Create a managed DNS zone
const dnsZoneCom = new gcp.dns.ManagedZone(managedZoneNameCom, {
name: managedZoneNameCom,
dnsName: domainNameCom + ".",
description: "Managed zone for " + domainNameCom,
});


// GitHub Pages IP addresses

// Create A records for each GitHub Pages IP
Expand Down

0 comments on commit 1f68ef2

Please sign in to comment.