This repository has been archived by the owner on Jul 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
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 #2 from asicsdigital/terraform12
Update Module to Terraform 0.12.9
- Loading branch information
Showing
3 changed files
with
29 additions
and
24 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.11.7 | ||
0.12.9 |
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,19 @@ | ||
variable "env" {} | ||
variable "env" { | ||
} | ||
|
||
variable "subnets" { | ||
type = "list" | ||
type = list(string) | ||
description = "List of VPC Subnets IDs used to do lambdas" | ||
} | ||
|
||
variable "rds_sg" { | ||
type = "list" | ||
type = list(string) | ||
description = "List of Security Groups ID's to use for consulRdsCreateService lambda" | ||
} | ||
|
||
variable "rds_vpc_ids" { | ||
type = "list" | ||
type = list(string) | ||
default = [] | ||
description = "List of VPC ID's the consulRdsCreateService lambda will attempt to discover RDS instances in. Defaults empty array" | ||
} | ||
|