File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -108,6 +108,7 @@ module "cloudtrail-slack-notification" {
108108| security\_ group\_ ids | Security Group IDs. | list | ` <list> ` | no |
109109| slack\_ variables | A map that defines environment variables for the Lambda function. | map | ` <map> ` | no |
110110| subnet\_ ids | Subnet IDs. | list | ` <list> ` | no |
111+ | timeout | timeout. | number | ` "30" ` | no |
111112| variables | A map that defines environment variables for the Lambda function. | map | ` <map> ` | no |
112113
113114## Outputs
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ module "site-monitor" {
5353 " ec2:DescribeNetworkInterfaces" ,
5454 " ec2:DeleteNetworkInterface"
5555 ]
56- timeout = 30
56+ timeout = var . timeout
5757
5858 names = [
5959 " python_layer"
Original file line number Diff line number Diff line change @@ -64,4 +64,10 @@ variable "security_group_ids" {
6464 type = list
6565 default = []
6666 description = " Security Group IDs."
67+ }
68+
69+ variable "timeout" {
70+ type = number
71+ default = 30
72+ description = " timeout."
6773}
You can’t perform that action at this time.
0 commit comments