-
Notifications
You must be signed in to change notification settings - Fork 21
/
example.yml
34 lines (32 loc) · 1.03 KB
/
example.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
AWSTemplateFormatVersion: '2010-09-09'
Description: Example template for a global AI opt-out organizations management policy
Parameters:
content:
Type: String
Description: Enter the JSON policy document
description:
Type: String
Description: Enter a description of the policy
policyName:
Type: String
Description: Enter the desired name of the policy
targetIds:
Type: CommaDelimitedList
Description: Comma-delimeted list of the target IDs of the OUs or Root to target, e.g. r-xxxx
policyType:
Type: String
AllowedValues:
- AISERVICES_OPT_OUT_POLICY
- BACKUP_POLICY
- SERVICE_CONTROL_POLICY
- TAG_POLICY
Description: Enter AISERVICES_OPT_OUT_POLICY, BACKUP_POLICY, SERVICE_CONTROL_POLICY, or TAG_POLICY.
Resources:
OrganizationPolicy:
Type: Community::Organizations::Policy
Properties:
Content: !Sub '${content}'
Description: !Sub '${description}'
Name: !Sub '${policyName}'
PolicyType: !Sub '${policyType}'
TargetIds: !Ref targetIds