Skip to main content

environment_outputs

Creates, updates, deletes, gets or lists an environment_outputs resource.

Overview

Nameenvironment_outputs
TypeResource
Idaws.proton.environment_outputs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
keystringThe output key.
value_stringstringThe output value.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_environment_outputsselectregionList 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

List the infrastructure as code outputs for your environment.

SELECT
key,
value_string
FROM aws.proton.environment_outputs
WHERE region = '{{ region }}' -- required
;