-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.yml
44 lines (38 loc) · 1.28 KB
/
template.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
AWSTemplateFormatVersion: '2010-09-09'
Description: SSO Configuration ExampleCompany
Parameters:
SSOInstanceARN:
Type: String
Description: The SSO instance ARN. EX arn:aws:sso:::instance/ssoins-12345678.
ArtifactBucketName:
Type: String
Description: The name of the bucket to store the artifacts in. EX codepipleine-sso-artifactbucket-1234fdsas.
Resources:
ExampleCompanyDeveloper:
Type: AWS::CloudFormation::Stack
Properties:
Parameters:
SSOInstanceARN : !Ref SSOInstanceARN
Tags:
- Key: "ApplicationID"
Value: "1"
- Key: "Classification"
Value: "Confidential"
- Key: "SupportTeam"
Value: "[email protected]"
TemplateURL: !Sub https://s3.amazonaws.com/${ArtifactBucketName}/Personas/ExampleCompanyDeveloper.yml
TimeoutInMinutes: 5
ExampleCompanySRE:
Type: AWS::CloudFormation::Stack
Properties:
Parameters:
SSOInstanceARN : !Ref SSOInstanceARN
Tags:
- Key: "ApplicationID"
Value: "1"
- Key: "Classification"
Value: "Confidential"
- Key: "SupportTeam"
Value: "[email protected]"
TemplateURL: !Sub https://s3.amazonaws.com/${ArtifactBucketName}/Personas/ExampleCompanySRE.yml
TimeoutInMinutes: 5