Skip to content

Commit

Permalink
containerapps: adding a todo for the new functionality in 2023-05-01
Browse files Browse the repository at this point in the history
  • Loading branch information
tombuildsstuff committed Aug 3, 2023
1 parent b984b62 commit 6850183
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion internal/services/containerapps/helpers/container_apps.go
Original file line number Diff line number Diff line change
Expand Up @@ -2243,7 +2243,11 @@ func UnpackContainerDaprSecretsCollection(input *daprcomponents.DaprSecretsColle

result := make([]daprcomponents.Secret, 0)
for _, v := range input.Value {
result = append(result, daprcomponents.Secret(v))
result = append(result, daprcomponents.Secret{
// TODO: add support for Identity & KeyVaultUrl
Name: v.Name,
Value: v.Value,
})
}

return &result
Expand Down

0 comments on commit 6850183

Please sign in to comment.