forked from aliyun/ros-templates
-
Notifications
You must be signed in to change notification settings - Fork 1
/
resource-group.yml
54 lines (54 loc) · 1.4 KB
/
resource-group.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
44
45
46
47
48
49
50
51
52
53
54
ROSTemplateFormatVersion: '2015-09-01'
Description: ResourceManager ResourceGroup resource example
Parameters:
DisplayName:
Type: String
Description: The display name of the resource group
Name:
Type: String
Description: The unique identifier of the resource group
Resources:
ResourceManagerResourceGroup:
Type: ALIYUN::ResourceManager::ResourceGroup
Properties:
DisplayName:
Ref: DisplayName
Name:
Ref: Name
Outputs:
RegionStatuses:
Description: The status of the resource group in all regions
Value:
Fn::GetAtt:
- ResourceManagerResourceGroup
- RegionStatuses
AccountId:
Description: The ID of the Alibaba Cloud account to which the resource group belongs
Value:
Fn::GetAtt:
- ResourceManagerResourceGroup
- AccountId
DisplayName:
Description: The display name of the resource group
Value:
Fn::GetAtt:
- ResourceManagerResourceGroup
- DisplayName
Id:
Description: The ID of the resource group
Value:
Fn::GetAtt:
- ResourceManagerResourceGroup
- Id
CreateDate:
Description: The time when the resource group was created
Value:
Fn::GetAtt:
- ResourceManagerResourceGroup
- CreateDate
Name:
Description: The unique identifier of the resource group
Value:
Fn::GetAtt:
- ResourceManagerResourceGroup
- Name