Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add tag
Browse files Browse the repository at this point in the history
bryantbiggs committed May 14, 2024
1 parent 1690b9c commit 95fcb7a
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion main.tf
Original file line number Diff line number Diff line change
@@ -40,7 +40,10 @@ resource "aws_apigatewayv2_api" "this" {
target = local.is_http ? var.target : null
version = var.api_version

tags = var.tags
tags = merge(
{ terraform-aws-modules = "apigateway-v2" },
var.tags,
)
}

################################################################################
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
@@ -189,7 +189,7 @@ variable "create_certificate" {
}

################################################################################
# Integration(s)
# Route(s) & Integration(s)
################################################################################

variable "create_routes_and_integrations" {

0 comments on commit 95fcb7a

Please sign in to comment.