Skip to content

Commit 233d34b

Browse files
authoredNov 14, 2023
feat: custome stage name and auto-deploy variable (#54)
1 parent 007c3d8 commit 233d34b

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed
 

‎main.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ resource "aws_apigatewayv2_stage" "default" {
9999
count = var.enabled && var.create_default_stage_enabled ? 1 : 0
100100

101101
api_id = aws_apigatewayv2_api.default[0].id
102-
name = format("%s-stage", module.labels.id)
103-
auto_deploy = false
102+
name = var.stage_name != null ? var.stage_name : format("%s-stage", module.labels.id)
103+
auto_deploy = var.auto_deploy
104104
dynamic "access_log_settings" {
105105
for_each = var.access_log_settings
106106
content {

‎variables.tf

+13-1
Original file line numberDiff line numberDiff line change
@@ -265,4 +265,16 @@ variable "passthrough_behavior" {
265265
type = string
266266
default = "WHEN_NO_MATCH"
267267
description = "Pass-through behavior for incoming requests based on the Content-Type header in the request, and the available mapping templates specified as the request_templates attribute. "
268-
}
268+
}
269+
270+
variable "stage_name" {
271+
type = string
272+
default = null
273+
description = "Stage Name to be used, set to `$default` to use Invoke URL as your default webpage for lambda"
274+
}
275+
276+
variable "auto_deploy" {
277+
type = bool
278+
default = false
279+
description = "Set this to true to enable stage Auto Deployment"
280+
}

0 commit comments

Comments
 (0)