generated from pagopa/terraform-infrastructure-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Added spontaneus payments downstream secrets (#2663)
* added spontaneus payments downstream secrets * minor fix --------- Co-authored-by: pasqualespica <[email protected]> Co-authored-by: Pasquale Spica <[email protected]>
- Loading branch information
1 parent
51b73c6
commit c4267a2
Showing
4 changed files
with
54 additions
and
7 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
resource "azurerm_api_management_subscription" "iuv_generator_subkey" { | ||
api_management_name = data.azurerm_api_management.apim.name | ||
resource_group_name = data.azurerm_api_management.apim.resource_group_name | ||
product_id = data.azurerm_api_management_product.apim_iuv_generator_product.id | ||
display_name = "Subscription Spontaneous Payments for IUV Generator" | ||
allow_tracing = false | ||
state = "active" | ||
} | ||
|
||
resource "azurerm_api_management_subscription" "gps_spontaneous_payments_services_subkey" { | ||
api_management_name = data.azurerm_api_management.apim.name | ||
resource_group_name = data.azurerm_api_management.apim.resource_group_name | ||
product_id = data.azurerm_api_management_product.apim_gps_spontaneous_payments_services_product.id | ||
display_name = "Subscription Spontaneous Payments for Services" | ||
allow_tracing = false | ||
state = "active" | ||
} |
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