Skip to main content

environment_provisioned_resources

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

Overview

Nameenvironment_provisioned_resources
TypeResource
Idaws.proton.environment_provisioned_resources

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringThe provisioned resource name.
identifierstringThe provisioned resource identifier.
provisioning_enginestringThe resource provisioning engine. At this time, CLOUDFORMATION can be used for Amazon Web Services-managed provisioning, and TERRAFORM can be used for self-managed provisioning. For more information, see Self-managed provisioning in the Proton User Guide. (CLOUDFORMATION, TERRAFORM)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_environment_provisioned_resourcesselectregionList the provisioned resources 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 provisioned resources for your environment.

SELECT
name,
identifier,
provisioning_engine
FROM aws.proton.environment_provisioned_resources
WHERE region = '{{ region }}' -- required
;