environment_outputs
Creates, updates, deletes, gets or lists an environment_outputs resource.
Overview
| Name | environment_outputs |
| Type | Resource |
| Id | aws.proton.environment_outputs |
Fields
The following fields are returned by SELECT queries:
- list_environment_outputs
| Name | Datatype | Description |
|---|---|---|
key | string | The output key. |
value_string | string | The output value. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_environment_outputs | select | region | List the infrastructure as code outputs for your environment. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_environment_outputs
List the infrastructure as code outputs for your environment.
SELECT
key,
value_string
FROM aws.proton.environment_outputs
WHERE region = '{{ region }}' -- required
;