Skip to content

Latest commit

 

History

History
63 lines (45 loc) · 2.45 KB

service_route_bindings.md

File metadata and controls

63 lines (45 loc) · 2.45 KB
page_title subcategory description
cloudfoundry_service_route_bindings Data Source - terraform-provider-cloudfoundry
Gets information on Service Route Bindings the user has access to.

cloudfoundry_service_route_bindings (Data Source)

Gets information on Service Route Bindings the user has access to.

Example Usage

data "cloudfoundry_service_route_bindings" "rbs" {
  service_instance = "ab65cad9-73fa-4dd4-9c09-87f89b2e77ec"
}

output "bindings" {
  value = data.cloudfoundry_service_route_bindings.rbs
}

Schema

Optional

  • route (String) The GUID of the route to filter by
  • service_instance (String) The GUID of the service instance to filter by

Read-Only

  • route_bindings (Attributes List) The list of route bindings for the given service instance. (see below for nested schema)

Nested Schema for route_bindings

Optional:

  • annotations (Map of String) The annotations associated with Cloud Foundry resources. Add as described here.
  • labels (Map of String) The labels associated with Cloud Foundry resources. Add as described here.

Read-Only:

  • created_at (String) The date and time when the resource was created in RFC3339 format.
  • id (String) The GUID of the object.
  • last_operation (Attributes) The details of the last operation performed on the resource (see below for nested schema)
  • route (String) The GUID of the route to be bound
  • route_service_url (String) The URL for the route service.
  • service_instance (String) The service instance that the route is bound to
  • updated_at (String) The date and time when the resource was updated in RFC3339 format.

Nested Schema for route_bindings.last_operation

Read-Only:

  • created_at (String) The time at which the last operation was created
  • description (String) A description of the last operation
  • state (String) The state of the last operation
  • type (String) The type of the last operation
  • updated_at (String) The time at which the last operation was updated