Skip to content

Latest commit

 

History

History
45 lines (33 loc) · 1.64 KB

File metadata and controls

45 lines (33 loc) · 1.64 KB
page_title subcategory description
cloudfoundry_stacks Data Source - terraform-provider-cloudfoundry
Gets information of Cloud Foundry stacks present.

cloudfoundry_stacks (Data Source)

Gets information of Cloud Foundry stacks present.

Example Usage

data "cloudfoundry_stacks" "all" {
  name = "stack"
}

Schema

Optional

  • name (String) Name of the stack to filter by

Read-Only

Nested Schema for stacks

Read-Only:

  • annotations (Map of String) The annotations associated with Cloud Foundry resources.
  • build_rootfs_image (String) The name of the stack image associated with staging/building Apps. If a stack does not have unique images, this will be the same as the stack name.
  • created_at (String) The date and time when the resource was created in RFC3339 format.
  • default (Boolean) Whether the stack is configured to be the default stack for new applications.
  • description (String) The description of the stack
  • id (String) The GUID of the object.
  • labels (Map of String) The labels associated with Cloud Foundry resources.
  • name (String) The name of the stack
  • run_rootfs_image (String) The name of the stack image associated with running Apps + Tasks. If a stack does not have unique images, this will be the same as the stack name.
  • updated_at (String) The date and time when the resource was updated in RFC3339 format.