turbot/terraform_aws_compliance

Query: apigateway_deployment_create_before_destroy_enabled

Usage

powerpipe query terraform_aws_compliance.query.apigateway_deployment_create_before_destroy_enabled

Steampipe Tables

SQL

select
address as resource,
case
when (lifecycle ->> 'create_before_destroy') = 'true' then 'ok'
else 'alarm'
end status,
split_part(address, '.', 2) || case
when (lifecycle ->> 'create_before_destroy') = 'true' then ' create before destroy enabled'
else ' create before destroy disabled'
end || '.' reason
from
terraform_resource
where
type = 'aws_api_gateway_deployment';

Controls

The query is being used by the following controls: