Skip to content

Latest commit

 

History

History
43 lines (32 loc) · 1.09 KB

apigw_route.md

File metadata and controls

43 lines (32 loc) · 1.09 KB
page_title subcategory description
citrixadm_apigw_route Resource - terraform-provider-citrixadm
API Route for the provided API Deployment Id.

citrixadm_apigw_route (Resource)

API Route for the provided API Deployment Id.

Example Usage

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
}

Schema

Required

  • deployment_id (String) API Deployment Id
  • name (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 type
  • upstreamservice_name (String) Upstream Service Name where API traffic will be sent

Read-Only

  • id (String) The ID of this resource.