Globalvar

This endpoint is used to create, update, search or delete global variables information inside a Terrakube organizations, this variables will be injected inside the jobs, workspace variables have priority over global variables if the same name is used.

Entity fields:

Path
Type
Description

data.type

string

Should be "variable"

data.attributes.key

string

Unique variable name

data.attributes.value

string

Key value

data.attributes.sensitive

boolean

To hide the value when the output is sensitive

data.attributes.hcl

boolean

Terraform HCL variable type

data.attributes.category

string

Variable type could be TERRAFORM or ENV (Environment Variable)

data.attributes.description

string

Free text

Example:

{
  "data": {
    "type": "globalvar",
    "attributes": {
      "key": "tag_name",
      "value": "HolaMundo",
      "sensitive": false,
      "hcl": false,
      "category": "TERRAFORM",
      "description": "Azure RG Tag"
    }
  }
}

Supported Operations

post

Creates an item of type globalvar and adds it to globalvar

Path parameters
organizationIdanyrequired

organization Identifier

Body
dataobjectoptional

Responses
curl -L \
  --request POST \
  --url '/organization/{organizationId}/globalvar' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
    "data": {
      "type": "text",
      "id": "text",
      "attributes": {
        "category": "TERRAFORM",
        "description": "text",
        "hcl": true,
        "key": "text",
        "sensitive": true,
        "value": "text"
      },
      "relationships": {
        "organization": {
          "id": "text",
          "type": "organization"
        }
      }
    }
  }'
{
  "data": {
    "type": "text",
    "id": "text",
    "attributes": {
      "category": "TERRAFORM",
      "description": "text",
      "hcl": true,
      "key": "text",
      "sensitive": true,
      "value": "text"
    },
    "relationships": {
      "organization": {
        "id": "text",
        "type": "organization"
      }
    }
  }
}
delete

Deletes an instance of type globalvar

Path parameters
organizationIdanyrequired

organization Identifier

globalvarIdanyrequired

globalvar Identifier

Responses
curl -L \
  --request DELETE \
  --url '/organization/{organizationId}/globalvar/{globalvarId}'

No Content

For a complete list of organization operation please visit the OpenAPI specification

Last updated