Skip to content

Commit 5849830

Browse files
committed
After review, also removed validation on connection
1 parent f06f3f9 commit 5849830

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Module managed by
5555

5656
The following requirements are needed by this module:
5757

58-
- <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) (>= 0.13)
58+
- <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) (>= 0.14)
5959

6060
## Providers
6161

variables.tf

+1-5
Original file line numberDiff line numberDiff line change
@@ -100,11 +100,6 @@ variable "dx_connection_bandwith" {
100100
description = "DX Connection Bandwidth depends on location if all speeds are available"
101101
default = "1Gbps"
102102

103-
validation {
104-
condition = contains(["1Gbps", "2Gbps", "3Gbps", "4Gbps", "10Gbps", "20Gbps", "30Gpbs", "40Gbps", "100Gpbs"], var.dx_connection_bandwith)
105-
error_message = "Supported bandwidth values are 1Gbps or 10Gbps"
106-
}
107-
108103
type = string
109104
}
110105

@@ -302,6 +297,7 @@ variable "dx_public_vif_address_family" {
302297
variable "dx_public_vif_bgp_auth_key" {
303298
description = "Auth key for BGP Configuration"
304299
default = null
300+
sensitive = true
305301

306302
type = string
307303
}

versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
terraform {
3-
required_version = ">= 0.13"
3+
required_version = ">= 0.14"
44

55
required_providers {
66
aws = {

0 commit comments

Comments
 (0)