Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions integration/setup/companion-stack.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ Resources:
SecretString: '{"username":"testBrokerUser","password":"testBrokerPassword"}'
Description: SecretsManager Secret for pre-created MQ broker

ApiGatewayLoggingRole:
ApiGatewayCWRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Expand All @@ -253,11 +253,11 @@ Resources:

ApiGatewayAccount:
Type: AWS::ApiGateway::Account
DependsOn: ApiGatewayLoggingRole
DependsOn: ApiGatewayCWRole
Properties:
CloudWatchRoleArn: !GetAtt ApiGatewayLoggingRole.Arn
CloudWatchRoleArn: !GetAtt ApiGatewayCWRole.Arn

TestStackSweeperRole:
TestStackSweeperExecutionRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Expand Down Expand Up @@ -322,7 +322,7 @@ Resources:
Handler: index.handler
Timeout: 900
MemorySize: 256
Role: !GetAtt TestStackSweeperRole.Arn
Role: !GetAtt TestStackSweeperExecutionRole.Arn
Code:
ZipFile: |
import boto3, time
Expand Down