Skip to content

Commit

Permalink
fix: add default value for parameter containerName
Browse files Browse the repository at this point in the history
Forgot to add default value in commit 137ef2a, breaking compatability with previous versions of the template.
  • Loading branch information
hknutsen committed Jan 10, 2025
1 parent 0aa944d commit 50b9f74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
param storageAccountName string

@description('The name of the blob container to create.')
param containerName string
param containerName string = 'tfstate'

@description('An array of IP addresses or IP ranges that should be allowed to bypass the firewall of the Terraform backend. If empty, the firewall will be disabled.')
param ipRules array = []
Expand Down

0 comments on commit 50b9f74

Please sign in to comment.