Policy Setting: AWS > Lambda > Function > Approved > Custom
Policies
This policy setting is dependent on the following policy types:
Source
resource "turbot_policy_setting" "aws_lambda_function_approved_custom" { resource = turbot_policy_pack.main.id type = "tmod:@turbot/aws-lambda#/policy/types/functionApprovedCustom" template_input = <<-EOT { item: function { vpcConfig: get(path: "Configuration.VpcConfig") } } EOT template = <<-EOT {%- set vpcConfig = $.item.vpcConfig -%}
{% if vpcConfig.VpcId -%}
{%- set data = { "title": "Function in VPC", "result": "Approved", "message": "Function is within a VPC" } -%}
{%- elif not vpcConfig.VpcId -%}
{%- set data = { "title": "Function in VPC", "result": "Not approved", "message": "Function is not within a VPC" } -%}
{%- else -%}
{%- set data = { "title": "Function in VPC", "result": "Skip", "message": "No data for VPC yet" } -%}
{%- endif -%} {{ data | json }} EOT}