Skip to content

Commit

Permalink
add var profile
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Mar 4, 2022
1 parent 7cbc189 commit 802eae8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions vpn-transit-gateway/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ No modules.
| <a name="input_account_id"></a> [account\_id](#input\_account\_id) | AWS Account ID (default will pull from current user) | `string` | `""` | no |
| <a name="input_create"></a> [create](#input\_create) | Flag to indicate whether to create the resources or not (default: true) | `bool` | `true` | no |
| <a name="input_override_prefixes"></a> [override\_prefixes](#input\_override\_prefixes) | Override built-in prefixes by component. This should be used primarily for common infrastructure things | `map(string)` | `{}` | no |
| <a name="input_profile"></a> [profile](#input\_profile) | AWS Profile Name, used for makign AWS call to download VPN configurations | `string` | `"default"` | no |
| <a name="input_route_table_ids"></a> [route\_table\_ids](#input\_route\_table\_ids) | List of created route table IDs for privating routing to be used for VPN route propagation | `list(string)` | `[]` | no |
| <a name="input_tags"></a> [tags](#input\_tags) | AWS Tags to apply to appropriate resources (S3, KMS). Do not include safeguard tags here, use the data\_safeguard field for such things. | `map(string)` | `{}` | no |
| <a name="input_tgw_environment"></a> [tgw\_environment](#input\_tgw\_environment) | Transit Gatewway environment purpose (services, dev, test, stage, prod, cre) | `string` | `null` | no |
Expand Down
6 changes: 6 additions & 0 deletions vpn-transit-gateway/variables.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
variable "profile" {
description = "AWS Profile Name, used for makign AWS call to download VPN configurations"
type = string
default = "default"
}

variable "route_table_ids" {
description = "List of created route table IDs for privating routing to be used for VPN route propagation"
type = list(string)
Expand Down

0 comments on commit 802eae8

Please sign in to comment.