You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
r/azurerm_app_service: Make key_vault_reference_identity_id configurable (#13720)
Solves #13388 by making the user assigned identity id
for looking up key vault secrets configurable.
The attribute is computed to read the default value (at the moment: SystemAssigned ) if no value is specified .
The default value is returned by the API even if no SystemAssigned identity is set for an AppService. Therefore this behaviour should be fine.
Test case succeeded:
Copy file name to clipboardexpand all lines: website/docs/r/app_service.html.markdown
+2
Original file line number
Diff line number
Diff line change
@@ -87,6 +87,8 @@ The following arguments are supported:
87
87
88
88
*`https_only` - (Optional) Can the App Service only be accessed via HTTPS? Defaults to `false`.
89
89
90
+
*`key_vault_reference_identity_id` - (Optional) The User Assigned Identity Id used for looking up KeyVault secrets. The identity must be assigned to the application. [For more information see - Access vaults with a user-assigned identity](https://docs.microsoft.com/en-us/azure/app-service/app-service-key-vault-references#access-vaults-with-a-user-assigned-identity)
91
+
90
92
*`logs` - (Optional) A `logs` block as defined below.
91
93
92
94
*`storage_account` - (Optional) One or more `storage_account` blocks as defined below.
0 commit comments