-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #57 from meltwater/54_ttl
54_ttl - allow users to set TTL on DNS Records
- Loading branch information
Showing
5 changed files
with
19 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
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
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,17 +1,26 @@ | ||
variable "autoscale_handler_unique_identifier" { | ||
description = "asg_dns_handler" | ||
type = string | ||
} | ||
|
||
variable "vpc_name" { | ||
description = "The name of the VPC" | ||
type = string | ||
} | ||
|
||
variable "use_public_ip" { | ||
description = "Use public IP instead of private" | ||
default = false | ||
type = bool | ||
} | ||
|
||
variable "autoscale_route53zone_arn" { | ||
description = "The ARN of route53 zone associated with autoscaling group" | ||
type = string | ||
} | ||
|
||
variable "route53_record_ttl" { | ||
description = "TTL to use for the Route 53 Records created" | ||
default = 300 | ||
type = number | ||
} |