Skip to content

Commit

Permalink
tidy up
Browse files Browse the repository at this point in the history
  • Loading branch information
nelg committed Sep 2, 2020
1 parent 1d5e225 commit dd68da7
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ terraform apply
# Requirements:

- existing route53 zone in AWS
- terraform v0.12.16 or newer
- terraform v0.13.1 or newer
- AWS provider 3.4.x
9 changes: 8 additions & 1 deletion provider.tf
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"
}
3 changes: 1 addition & 2 deletions vars.tf
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"
}
}

0 comments on commit dd68da7

Please sign in to comment.