page_title | subcategory | description |
---|---|---|
citrixadm_apigw_route Resource - terraform-provider-citrixadm |
API Route for the provided API Deployment Id. |
API Route for the provided API Deployment Id.
data "citrixadm_apigw_deployment" "demo" {
name = "deploy"
}
resource "citrixadm_apigw_route" "route1" {
name = "tf_route1"
route_param = "/user"
route_paramtype = "resource_path"
upstreamservice_name = "upstream_service10"
deployment_id = data.citrixadm_apigw_deployment.demo.id
}
deployment_id
(String) API Deployment Idname
(String) Name for API Route.route_param
(String) API Resource Path in the API definition or user entered Path.route_paramtype
(String) API Route Param typeupstreamservice_name
(String) Upstream Service Name where API traffic will be sent
id
(String) The ID of this resource.