Skip to content

Commit

Permalink
PLAT-8999: Use correct username for secrets (#302)
Browse files Browse the repository at this point in the history
  • Loading branch information
Secretions authored Nov 22, 2024
1 parent b344632 commit bf6b16b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/infra/submodules/storage/netapp.tf
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ resource "aws_secretsmanager_secret_version" "netapp" {
for_each = local.netapp_secret_names
secret_id = aws_secretsmanager_secret.netapp[each.key].id
secret_string = jsonencode({
username = each.value
username = local.netapp_ontap_components_user[each.key]
password = random_password.netapp[each.key].result
})
}
Expand Down

0 comments on commit bf6b16b

Please sign in to comment.