Closed schshmuel closed 1 year ago
Using the following setup didn't work (Same as one of the examples).
Configure existing Application Role to an application that runs in EC2 Instance with a policy with provided actions
module "firehose" { source = "fdmsantos/kinesis-firehose/aws" version = "x.x.x" name = "firehose-delivery-stream" destination = "s3" # or destination = "extended_s3" configure_existing_application_role = true application_role_name = "application-role" create_application_role_policy = true application_role_policy_actions = [ "firehose:PutRecord", "firehose:PutRecordBatch", "firehose:CreateDeliveryStream", "firehose:UpdateDestination" ] }
I got an error name = "${local.application_role_name}-policy" is null.
This PR is included in version 2.1.1 :tada:
Thanks @schshmuel
Using the following setup didn't work (Same as one of the examples).
Configure existing Application Role to an application that runs in EC2 Instance with a policy with provided actions
I got an error name = "${local.application_role_name}-policy" is null.