Control: Step Functions state machine should have execution history logging enabled
Description
Ensure State Machine have execution history logging enabled.
Usage
Run the control in your terminal:
powerpipe control run terraform_aws_compliance.control.sfn_state_machine_execution_history_logging_enabled
Snapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe control run terraform_aws_compliance.control.sfn_state_machine_execution_history_logging_enabled --share
SQL
This control uses a named query:
select address as resource, case when (attributes_std -> 'logging_configuration' ->> 'include_execution_data') = 'true' then 'ok' else 'alarm' end as status, split_part(address, '.', 2) || case when (attributes_std -> 'logging_configuration' ->> 'include_execution_data') = 'true' then ' execution history logging enabled' else ' execution history logging disabled' end || '.' reason , path || ':' || start_linefrom terraform_resourcewhere type = 'aws_sfn_state_machine';