Skip to content

Commit

Permalink
chore: adding a dash to the prefix in the aws secret
Browse files Browse the repository at this point in the history
  • Loading branch information
gambol99 committed Nov 8, 2024
1 parent 82bf619 commit 7f8392e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ resource "aws_secretsmanager_secret" "configuration" {
for_each = var.tasks

description = format("Contains the configuration yaml for the aws-nuke '%s' task", each.key)
name_prefix = format("%s/%s", var.configuration_secret_name_prefix, each.key)
name_prefix = format("%s/%s-", var.configuration_secret_name_prefix, each.key)
recovery_window_in_days = 0
tags = var.tags

Expand Down

0 comments on commit 7f8392e

Please sign in to comment.