We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Name
1 parent 62001b5 commit b3600deCopy full SHA for b3600de
.pre-commit-config.yaml
@@ -1,6 +1,6 @@
1
repos:
2
- repo: https://github.com/antonbabenko/pre-commit-terraform
3
- rev: v1.83.6
+ rev: v1.88.0
4
hooks:
5
- id: terraform_fmt
6
- id: terraform_wrapper_module_for_each
modules/service/main.tf
@@ -1320,7 +1320,11 @@ resource "aws_security_group" "this" {
1320
description = var.security_group_description
1321
vpc_id = data.aws_subnet.this[0].vpc_id
1322
1323
- tags = merge(var.tags, var.security_group_tags)
+ tags = merge(
1324
+ var.tags,
1325
+ { "Name" = local.security_group_name },
1326
+ var.security_group_tags
1327
+ )
1328
1329
lifecycle {
1330
create_before_destroy = true
0 commit comments