observe_folder

Manages a folder. Folders are used to group other resources together. This resource is still in development and is not yet reflected in the UI.

Example Usage

data "observe_workspace" "default" {
  name = "Default"
}

resource "observe_folder" "example" {
  workspace = data.observe_workspace.default.oid
  name      = "My Folder"
}

# Reference the folder from other resources that support folders:
resource "observe_app" "example" {
  folder = observe_folder.example.oid
  # ...
}

Schema

Required

  • name (String)

  • workspace (String)

Optional

  • description (String)

  • icon_url (String)

Read-Only

  • id (String) The ID of this resource.

  • oid (String)

Import

Import is supported using the following syntax:

terraform import observe_folder.example 1414010