Azure API Management API Operation Policy
This page shows how to write Terraform and Azure Resource Manager for API Management API Operation Policy and write them securely.
azurerm_api_management_api_operation_policy (Terraform)
The API Operation Policy in API Management can be configured in Terraform with the resource name azurerm_api_management_api_operation_policy
. The following sections describe 10 examples of how to use the resource and its parameters.
Example Usage from GitHub
resource "azurerm_api_management_api_operation_policy" "get-a-random-joke" {
api_name = azurerm_api_management_api.dadjoke.name
resource_group_name = local.resource_group_name
api_management_name = data.azurerm_api_management.apim.name
operation_id = "get-a-random-joke"
resource "azurerm_api_management_api_operation_policy" "get-users-userId" {
count = 1
resource_group_name = local.shared-rg
api_management_name = local.apim_name
api_name = azurerm_api_management_api.test-api.name
operation_id = "get-users-userId"
resource "azurerm_api_management_api_operation_policy" "fermium_v3_get-elements-by-atomic" {
api_name = azurerm_api_management_api.fermium_v3.name
api_management_name = azurerm_api_management_api.fermium_v3.api_management_name
resource_group_name = azurerm_api_management_api.fermium_v3.resource_group_name
operation_id = "get-elements-by-atomic"
xml_link = "https://raw.githubusercontent.com/krallice/fermium/master/api/fermium_v3_get-elements-by-atomic.xml"
resource "azurerm_api_management_api_operation_policy" "example" {
api_name = azurerm_api_management_api.hmi_apim_api.name
api_management_name = azurerm_api_management.hmi_apim.name
resource_group_name = azurerm_resource_group.hmi_apim_rg.name
operation_id = "request-hearing"
xml_content = file("../template/api-request-hearings-policy.xml")
resource "azurerm_api_management_api_operation_policy" "oper_policy" {
api_name = var.name
api_management_name = var.apim_name
resource_group_name = var.rg_name
operation_id = var.operation_id
resource "azurerm_api_management_api_operation_policy" "api_operation_policy" {
count = length(var.res_api_operation_policy)
api_name = var.res_api_name
api_management_name = var.res_apim_name
resource_group_name = var.res_rg_name
operation_id = var.res_api_operation_policy[count.index].operationid
resource "azurerm_api_management_api_operation_policy" "apim_api_operation_policy" {
operation_id = azurerm_api_management_api_operation.apim_api_operation.operation_id
api_name = azurerm_api_management_api_operation.apim_api_operation.api_name
api_management_name = azurerm_api_management_api_operation.apim_api_operation.api_management_name
resource_group_name = azurerm_api_management_api_operation.apim_api_operation.resource_group_name
xml_content = var.xml_content
resource "azurerm_api_management_api_operation_policy" "api_operation_policy" {
count = length(var.api_operation_policy)
api_management_name = element(var.api_management_name, lookup(var.api_operation_policy[count.index], "api_management_id"))
api_name = element(var.api_name, lookup(var.api_operation_policy[count.index], "api_management_id"))
operation_id = element(var.operation_id, lookup(var.api_operation_policy[count.index], "operation_id"))
resource_group_name = var.resource_group_name
resource "azurerm_api_management_api_operation_policy" "api_operation_policy" {
api_name = var.apima_name
api_management_name = var.apim_name
resource_group_name = var.resource_group_name
operation_id = var.operation_id
xml_content = var.xml_policy_file
resource "azurerm_api_management_api_operation_policy" "geographicLocation-api" {
api_name = azurerm_api_management_api_operation.geographicLocationTest.api_name
api_management_name = azurerm_api_management_api_operation.geographicLocationTest.api_management_name
resource_group_name = azurerm_api_management_api_operation.geographicLocationTest.resource_group_name
operation_id = azurerm_api_management_api_operation.geographicLocationTest.operation_id
Parameters
-
api_management_name
required - string -
api_name
required - string -
id
optional computed - string -
operation_id
required - string -
resource_group_name
required - string -
xml_content
optional computed - string -
xml_link
optional - string -
timeouts
single block
Explanation in Terraform Registry
Manages an API Management API Operation Policy
Microsoft.ApiManagement/service/apis/operations/policies (Azure Resource Manager)
The service/apis/operations/policies in Microsoft.ApiManagement can be configured in Azure Resource Manager with the resource name Microsoft.ApiManagement/service/apis/operations/policies
. The following sections describe how to use the resource and its parameters.
Example Usage from GitHub
An example could not be found in GitHub.
Parameters
apiVersion
required - stringname
required - stringThe identifier of the Policy.
properties
requiredformat
optional - stringFormat of the policyContent.
value
required - stringContents of the Policy as defined by the format.
type
required - string
Frequently asked questions
What is Azure API Management API Operation Policy?
Azure API Management API Operation Policy is a resource for API Management of Microsoft Azure. Settings can be wrote in Terraform.
Where can I find the example code for the Azure API Management API Operation Policy?
For Terraform, the fortunkam/apim-devops-demos, MohdmM01/terraform-azure-demo and krallice/fermium source code examples are useful. See the Terraform Example section for further details.