This repository was archived by the owner on Sep 28, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +18
-13
lines changed Expand file tree Collapse file tree 2 files changed +18
-13
lines changed Original file line number Diff line number Diff line change 14
14
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
15
15
AWSTemplateFormatVersion : 2010-09-09
16
16
Description : >
17
- Master Template of Distributed Load Test Using AWS Fargate.
18
- It deploys an ECR Repository, an ECS Fargate Cluster, a VPC,
19
- CloudWatch Logs group for the Fargate tasks and associated
20
- IAM roles.
17
+ Additional Region for Distributed Load Test Using AWS Fargate.
18
+ It deploys a Fargate Cluster, a VPC and a CloudWatch Log group.
21
19
22
20
Parameters :
23
- DockerRegistry :
21
+ DockerRegistryName :
24
22
Type : String
25
23
Description : >
26
- ECR Registry created in the master CloudFormation template. It should be in the form of
27
- account_id.dkr.ecr.region.amazonaws.com/repository_name
24
+ Name of the ECR repository created in the master CloudFormation template.
25
+ DockerRegistryURL :
26
+ Type : String
27
+ Description : >
28
+ URL of the ECR repository created in the master CloudFormation template. It should be in the form of
29
+ account_id.dkr.ecr.region.amazonaws.com
28
30
TaskExecutionRoleArn :
29
31
Type : String
30
32
Description : >
@@ -47,5 +49,7 @@ Resources:
47
49
TaskExecutionRoleArn : !Ref TaskExecutionRoleArn
48
50
DockerImage : !Join
49
51
- ' '
50
- - - !Ref DockerRegistry
52
+ - - !Ref DockerRegistryURL
53
+ - ' /'
54
+ - !Ref DockerRegistryName
51
55
- ' :latest'
Original file line number Diff line number Diff line change 14
14
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
15
15
AWSTemplateFormatVersion : 2010-09-09
16
16
Description : >
17
- Master Template of Distributed Load Test Using AWS Fargate.
18
- It deploys an ECR Repository, an ECS Fargate Cluster, a VPC,
19
- CloudWatch Logs group for the Fargate tasks and associated
20
- IAM roles.
17
+ Master Template for Distributed Load Test Using AWS Fargate.
18
+ It deploys an ECR Repository, a Fargate Cluster, a VPC,
19
+ a CloudWatch Log Group and an IAM Execution Role.
21
20
22
21
Resources :
23
22
DockerRegistry :
@@ -68,4 +67,6 @@ Outputs:
68
67
- ' .dkr.ecr.'
69
68
- !Ref ' AWS::Region'
70
69
- ' .amazonaws.com/'
71
- - !Ref DockerRegistry
70
+ - !Ref DockerRegistry
71
+ TaskExecutionRoleArn :
72
+ Value : !GetAtt TaskExecutionRole.Arn
You can’t perform that action at this time.
0 commit comments