-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
11 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,14 @@ | ||
# AWS account that contains the route53 domain | ||
provider "aws" { | ||
alias = "account_route53" # Specific to your setup | ||
version = ">= 3.4.0" | ||
} | ||
|
||
# your normal provider | ||
provider "aws" {} | ||
provider "aws" { | ||
version = ">= 3.4.0" | ||
} | ||
|
||
terraform { | ||
required_version = ">= 0.13.1" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
variable "demo_dns_zone" { | ||
description = "Specific to your setup, pick a domain you have in route53" | ||
default = "lab.oss.nz." | ||
} | ||
|
||
|
||
variable "demo_dns_name" { | ||
description = "Just a demo domain name" | ||
default = "ssldemo" | ||
} | ||
} |