Created
January 3, 2023 04:29
-
-
Save sjwaight/2c84c03ca292c8d216891e4dd1b14558 to your computer and use it in GitHub Desktop.
Logic Apps Parameters section bicep snippet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
parameters: { | |
'$connections': { | |
value: { | |
keyvault: { | |
connectionId: connections_keyvault_resource.id | |
connectionName: 'keyvault' | |
connectionProperties: { | |
authentication: { | |
type: 'ManagedServiceIdentity' | |
} | |
} | |
id: subscriptionResourceId('Microsoft.Web/locations/managedApis', resource_group_location, 'keyvault') | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment