Skip to content

Commit

Permalink
Fixed configmap.
Browse files Browse the repository at this point in the history
  • Loading branch information
danielscholl committed Jan 21, 2024
1 parent d8b9b5b commit e21568c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bicep/modules/aks_configmap.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ param dataMap array = [
}
]

var configmapValues = [for (key, value) in dataMap: '--from-literal=${key}=${value}']
var configmapValues = [for item in dataMap: '--from-literal=${item.key}=${item.value}']
var configmapValuesString = join(configmapValues, ' ')

module configMap './aks-run-command/main.bicep' = {
Expand Down

0 comments on commit e21568c

Please sign in to comment.