Skip to content

Commit

Permalink
Merge pull request #20 from babbel/default-tags
Browse files Browse the repository at this point in the history
Provide empty map as default for `tags` variable
  • Loading branch information
jansiwy authored Aug 29, 2023
2 parents 8dce1e4 + 1809c2b commit 302da2e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
# Changelog

## v1.2.1

- [Provide empty map as default for `tags` variable](https://github.com/babbel/terraform-aws-vpc/pull/20)

## v1.2.0

- [Relax version constraints for modules](https://github.com/babbel/terraform-aws-vpc/pull/18)

## v1.1.0

- [Bump hashicorp/aws dependency](https://github.com/babbel/terraform-aws-vpc/pull/11)
Expand Down
3 changes: 2 additions & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ variable "subnet_bits" {
variable "tags" {
description = "Map of tags to assign to all resources supporting tags (in addition to the `Name` tag)"

type = map(string)
type = map(string)
default = {}
}

variable "vpc_endpoints" {
Expand Down

0 comments on commit 302da2e

Please sign in to comment.