You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 4, 2024. It is now read-only.
"Description" : "v2016-01-08: This template is an abstraction layer for choosing Oracle or MSSQL when deploying Deep Security Manager",
4
+
"Parameters" : {
5
+
"DBIRDSInstanceSize" : {
6
+
"Default" : "db.m3.large",
7
+
"Description" : "Trend Micro Deep Security Database instance class",
8
+
"Type" : "String",
9
+
"AllowedValues" : [
10
+
"db.m4.medium",
11
+
"db.m4.large",
12
+
"db.m4.xlarge",
13
+
"db.m4.2xlarge",
14
+
"db.m3.medium",
15
+
"db.m3.large",
16
+
"db.m3.xlarge",
17
+
"db.m3.2xlarge",
18
+
"db.m2.xlarge",
19
+
"db.r3.large",
20
+
"db.r3.xlarge",
21
+
"db.r3.2xlarge",
22
+
"db.r3.4xlarge",
23
+
"db.r3.8xlarge",
24
+
"db.m2.2xlarge",
25
+
"db.m2.4xlarge",
26
+
"db.m1.medium",
27
+
"db.m1.large",
28
+
"db.m1.xlarge"
29
+
],
30
+
"ConstraintDescription" : "must select a valid database instance type."
31
+
},
32
+
"DBIStorageAllocation" : {
33
+
"Default" : 10,
34
+
"Description" : "The Storage Allocated to Database Instance (in GB). Minimum 200 for SQL Server, 10 for Oracle.",
35
+
"Type" : "Number",
36
+
"MinValue" : 10,
37
+
"MaxValue" : 3072,
38
+
"ConstraintDescription" : "must be between 10 and 3072Gb."
39
+
},
40
+
"DBPBackupDays" : {
41
+
"Default" : 1,
42
+
"Description" : "Days to keep automatic RDS backups (0-35)",
43
+
"Type" : "Number",
44
+
"MinValue" : 0,
45
+
"MaxValue" : 35,
46
+
"ConstraintDescription" : "must be between 0 and 35 days."
47
+
},
48
+
"DBICAdminName" : {
49
+
"Default" : "dsadmin",
50
+
"NoEcho" : false,
51
+
"Description" : "Admin account username to be used for the database instance",
52
+
"Type" : "String",
53
+
"MinLength" : 1,
54
+
"MaxLength" : 16,
55
+
"AllowedPattern" : "[a-zA-Z][a-zA-Z0-9]*",
56
+
"ConstraintDescription" : "must begin with a letter and contain only alphanumeric characters."
57
+
},
58
+
"DBICAdminPassword" : {
59
+
"NoEcho" : true,
60
+
"Description" : "Password to be used for the database admin account. 8-41 alphanumeric characters",
61
+
"Type" : "String",
62
+
"MinLength" : 8,
63
+
"MaxLength" : 41,
64
+
"AllowedPattern" : "[a-zA-Z0-9!^*\\-_+]*",
65
+
"ConstraintDescription" : "Can only contain alphanumeric characters or the following special characters !^*-_+ Min length 8, max length 41"
66
+
},
67
+
"DBPName" : {
68
+
"Default" : "dsm",
69
+
"Description" : "Name to be assigned to the database",
70
+
"Type" : "String",
71
+
"MinLength" : 1,
72
+
"MaxLength" : 64,
73
+
"AllowedPattern" : "[a-zA-Z][a-zA-Z0-9]*",
74
+
"ConstraintDescription" : "must begin with a letter and contain only alphanumeric characters."
75
+
},
76
+
"StorageType" : {
77
+
"Default" : "gp2",
78
+
"Type" : "String"
79
+
},
80
+
"RDSSG" : {
81
+
"Type" : "AWS::EC2::SecurityGroup::Id"
82
+
},
83
+
"DBPEngine" : {
84
+
"Description" : "Choose SQL or Oracle for DSM database Engine",
85
+
"Type" : "String",
86
+
"Default" : "SQL",
87
+
"AllowedValues" : [
88
+
"SQL",
89
+
"Oracle"
90
+
]
91
+
},
92
+
"MultiAZ": {
93
+
"Description": "Use Multi-AZ or SQL Mirroring Option Group for RDS Instance",
94
+
"Type" : "String",
95
+
"AllowedValues" : [
96
+
"true",
97
+
"false"
98
+
],
99
+
"Default" : "false"
100
+
},
101
+
"DBIInstanceIdentifier" : {
102
+
"Description" : "Choose RDS Instance ID",
103
+
"Type" : "String"
104
+
},
105
+
"DBISubnetGroupName" : {
106
+
"Type" : "String",
107
+
"Default" : ""
108
+
},
109
+
"DBISubnet1" : {
110
+
"Description" : "Choose a private subnets in the same VPC for the RDS instance",
111
+
"Type" : "AWS::EC2::Subnet::Id",
112
+
"ConstraintDescription" : "RDS Subnet Groups must be comprised of 2 subnets in seperate availability zones with the specified VPC for deploying this template"
113
+
},
114
+
"DBISubnet2" : {
115
+
"Description" : "Choose private subnets in the same VPC for this RDS instance",
116
+
"Type" : "AWS::EC2::Subnet::Id",
117
+
"ConstraintDescription" : "RDS Subnet Groups must be comprised of 2 subnets in seperate availability zones with the specified VPC for deploying this template"
0 commit comments