forked from aliyun/ros-templates
-
Notifications
You must be signed in to change notification settings - Fork 1
/
user-operations-analytics.yml
400 lines (378 loc) · 10.1 KB
/
user-operations-analytics.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
ROSTemplateFormatVersion: '2015-09-01'
Workspace:
variables.tf: |+
variable "zone_id" {
type = string
description = <<EOT
{
"AssociationProperty": "ALIYUN::ECS::Instance::ZoneId",
"Description": {
"zh-cn": "可用区ID。<br><b>注: <font color='blue'>选择可用区前请确认该可用区是否支持创建ECS资源的规格</font></b>",
"en": "Availability Zone ID,<br><b>note: <font color='blue'>Before selecting, please confirm that the Availability Zone supports the specification of creating ECS resources</font></b>"
},
"Label": {
"zh-cn": "可用区ID",
"en": "Available Zone ID"
}
}
EOT
}
variable "adb_compute_resource" {
type = string
default = "16ACU"
description = <<EOT
{
"Label": {
"zh-cn": "计算预留资源",
"en": "Compute Resource"
}
}
EOT
}
variable "adb_storage_resource" {
type = string
default = "24ACU"
description = <<EOT
{
"Label": {
"zh-cn": "存储预留资源",
"en": "Storage Resource"
}
}
EOT
}
variable "rds_instance_type" {
type = string
description = <<EOT
{
"Label": {
"zh-cn": "RDS实例规格",
"en": "RDS Instance Type"
},
"AssociationProperty": "ALIYUN::RDS::Instance::InstanceType",
"AssociationPropertyMetadata": {
"ZoneId": "$${zone_id}",
"Engine": "MySQL",
"EngineVersion": "8.0",
"Category": "HighAvailability",
"DBInstanceStorageType": "cloud_essd"
}
}
EOT
}
variable "rds_instance_storage" {
type = number
default = 20
description = <<EOT
{
"Label": {
"zh-cn": "RDS数据库存储空间",
"en": "RDS Instance Storage"
}
}
EOT
}
variable "rds_db_name" {
type = string
default = "dim"
description = <<EOT
{
"Label": {
"zh-cn": "RDS数据库名称",
"en": "RDS DBName"
}
}
EOT
}
variable "rds_account" {
type = string
default = "testuser"
description = <<EOT
{
"Label": {
"zh-cn": "RDS数据库账号名称",
"en": "RDS Instance DB AccountName"
}
}
EOT
}
variable "rds_password" {
type = string
default = "testPassword01"
description = <<EOT
{
"Label": {
"zh-cn": "RDS数据库账号密码",
"en": "RDS Instance DB AccountPassword"
},
"NoEcho": true
}
EOT
}
variable "oss_bucket_name" {
type = string
default = "demo-bucket03"
description = <<EOT
{
"Label": {
"zh-cn": "OSS存储空间名称",
"en": "OSS BucketName"
}
}
EOT
}
variable "topic_name" {
type = string
default = "test_topic"
description = <<EOT
{
"Label": {
"zh-cn": "Topic名称",
"en": "Topic Name"
}
}
EOT
}
.metadata: |-
{
"ALIYUN::ROS::Interface": {
"ParameterGroups": [
{
"Parameters": [
"zone_id"
],
"Label": {
"default": {
"zh-cn": "可用区配置",
"en": "Zone Configuration"
}
}
},
{
"Parameters": [
"adb_compute_resource",
"adb_storage_resource"
],
"Label": {
"default": {
"zh-cn": "ADB配置",
"en": "ADB Configuration"
}
}
},
{
"Parameters": [
"rds_instance_type",
"rds_instance_storage",
"rds_db_name",
"rds_account",
"rds_password"
],
"Label": {
"default": {
"zh-cn": "RDS配置",
"en": "RDS Configuration"
}
}
},
{
"Parameters": [
"oss_bucket_name"
],
"Label": {
"default": {
"zh-cn": "OSS配置",
"en": "OSS Configuration"
}
}
},
{
"Parameters": [
"topic_name"
],
"Label": {
"default": {
"zh-cn": "Kafka配置",
"en": "Kafka Configuration"
}
}
}
],
"TemplateTags": [
"acs:technical-solution:应用的用户运营分析"
]
}
}
main.tf: |-
resource "alicloud_vpc" "vpc" {
cidr_block = "192.168.0.0/16"
}
resource "alicloud_vswitch" "vsw" {
vpc_id = alicloud_vpc.vpc.id
cidr_block = "192.168.0.0/24"
zone_id = var.zone_id
}
resource "alicloud_adb_db_cluster_lake_version" "adb" {
compute_resource = var.adb_compute_resource
db_cluster_version = "5.0"
payment_type = "PayAsYouGo"
storage_resource = var.adb_storage_resource
enable_default_resource_group = false
vswitch_id = alicloud_vswitch.vsw.id
vpc_id = alicloud_vpc.vpc.id
zone_id = var.zone_id
}
resource "alicloud_db_instance" "rds" {
engine = "MySQL"
engine_version = "8.0"
instance_type = var.rds_instance_type
instance_storage = var.rds_instance_storage
instance_charge_type = "Postpaid"
vswitch_id = alicloud_vswitch.vsw.id
monitoring_period = "60"
db_instance_storage_type = "cloud_essd"
}
resource "alicloud_db_account" "account" {
instance_id = alicloud_db_instance.rds.id
name = var.rds_account
password = var.rds_password
type = "Super"
}
resource "alicloud_db_database" "db" {
instance_id = alicloud_db_instance.rds.id
name = var.rds_db_name
}
resource "alicloud_alikafka_instance" "kafka" {
partition_num = 50
paid_type = "PostPaid"
io_max = 20
disk_type = 0
disk_size = 500
deploy_type = 5
vswitch_id = alicloud_vswitch.vsw.id
}
resource "alicloud_alikafka_topic" "topic" {
instance_id = alicloud_alikafka_instance.kafka.id
topic = var.topic_name
local_topic = "false"
compact_topic = "false"
partition_num = "12"
remark = "dafault_kafka_topic_remark"
}
resource "alicloud_oss_bucket" "bucket-acl" {
bucket = var.oss_bucket_name
acl = "private"
}
Parameters:
rds_instance_storage:
Default: '20'
Type: Number
Label:
zh-cn: RDS数据库存储空间
en: RDS Instance Storage
zone_id:
AssociationProperty: ALIYUN::ECS::Instance::ZoneId
Type: String
Description:
zh-cn: 可用区ID。<br><b>注: <font color='blue'>选择可用区前请确认该可用区是否支持创建ECS资源的规格</font></b>
en: Availability Zone ID,<br><b>note: <font color='blue'>Before selecting, please confirm that the Availability Zone supports the specification of creating ECS resources</font></b>
Label:
zh-cn: 可用区ID
en: Available Zone ID
topic_name:
Default: test_topic
Type: String
Label:
zh-cn: Topic名称
en: Topic Name
adb_compute_resource:
Default: 16ACU
Type: String
Label:
zh-cn: 计算预留资源
en: Compute Resource
rds_db_name:
Default: dim
Type: String
Label:
zh-cn: RDS数据库名称
en: RDS DBName
oss_bucket_name:
Default: demo-bucket03
Type: String
Label:
zh-cn: OSS存储空间名称
en: OSS BucketName
adb_storage_resource:
Default: 24ACU
Type: String
Label:
zh-cn: 存储预留资源
en: Storage Resource
rds_password:
Default: testPassword01
NoEcho: true
Type: String
Label:
zh-cn: RDS数据库账号密码
en: RDS Instance DB AccountPassword
rds_instance_type:
AssociationProperty: ALIYUN::RDS::Instance::InstanceType
AssociationPropertyMetadata:
Engine: MySQL
Category: HighAvailability
DBInstanceStorageType: cloud_essd
ZoneId: ${zone_id}
EngineVersion: '8.0'
Type: String
Label:
zh-cn: RDS实例规格
en: RDS Instance Type
rds_account:
Default: testuser
Type: String
Label:
zh-cn: RDS数据库账号名称
en: RDS Instance DB AccountName
Outputs: {}
Transform: Aliyun::Terraform-v1.2
Metadata:
ALIYUN::ROS::Interface:
ParameterGroups:
- Parameters:
- zone_id
Label:
default:
zh-cn: 可用区配置
en: Zone Configuration
- Parameters:
- adb_compute_resource
- adb_storage_resource
Label:
default:
zh-cn: ADB配置
en: ADB Configuration
- Parameters:
- rds_instance_type
- rds_instance_storage
- rds_db_name
- rds_account
- rds_password
Label:
default:
zh-cn: RDS配置
en: RDS Configuration
- Parameters:
- oss_bucket_name
Label:
default:
zh-cn: OSS配置
en: OSS Configuration
- Parameters:
- topic_name
Label:
default:
zh-cn: Kafka配置
en: Kafka Configuration
TemplateTags:
- acs:technical-solution:AnalyticDB MySQL湖仓版的用户运营分析实践-tech_solu_13