File tree Expand file tree Collapse file tree 1 file changed +9
-10
lines changed
Expand file tree Collapse file tree 1 file changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -37,11 +37,15 @@ variable "tags" {
3737variable "timeouts" {
3838 description = " Define maximum timeout for creating, updating, and deleting VPC endpoint resources"
3939 type = object ({
40- create = optional (string , " 10m " )
41- update = optional (string , " 10m " )
42- delete = optional (string , " 10m " )
40+ create = optional (string )
41+ update = optional (string )
42+ delete = optional (string )
4343 })
44- default = {}
44+ default = {
45+ create = " 10m"
46+ update = " 10m"
47+ delete = " 10m"
48+ }
4549}
4650
4751# ###############################################################################
@@ -57,12 +61,7 @@ variable "create_security_group" {
5761variable "security_group_name" {
5862 description = " Name to use on security group created. Conflicts with `security_group_name_prefix`"
5963 type = string
60- default = null
61-
62- validation {
63- condition = var. security_group_name == null || var. security_group_name_prefix == null
64- error_message = " only one of security_group_name or security_group_name_prefix can be set."
65- }
64+ default = null
6665}
6766
6867variable "security_group_name_prefix" {
You can’t perform that action at this time.
0 commit comments