@hiiretail/gcp-infra-cli 0.95.2 → 0.95.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/generators/common-resources/cloudsql/index.js +4 -4
- package/package.json +1 -1
- /package/generators/common-resources/cloudsql/templates/{postgres → postgres-clan}/instance/spec.hcl +0 -0
- /package/generators/common-resources/cloudsql/templates/{postgres → postgres-clan}/instance/terragrunt.hcl +0 -0
- /package/generators/common-resources/cloudsql/templates/{postgres → postgres-clan}/instance-secrets/terragrunt.hcl +0 -0
|
@@ -10,8 +10,8 @@ module.exports = class extends BaseGenerator {
|
|
|
10
10
|
name: 'instanceType',
|
|
11
11
|
message: 'Select Cloud SQL database instance type',
|
|
12
12
|
store: true,
|
|
13
|
-
default: 'postgres',
|
|
14
|
-
choices: ['postgres', 'mysql', 'mssql'],
|
|
13
|
+
default: 'postgres-clan',
|
|
14
|
+
choices: ['postgres-clan', 'mysql', 'mssql'],
|
|
15
15
|
},
|
|
16
16
|
{
|
|
17
17
|
type: 'list',
|
|
@@ -20,7 +20,7 @@ module.exports = class extends BaseGenerator {
|
|
|
20
20
|
store: true,
|
|
21
21
|
default: (response) => {
|
|
22
22
|
const defaultTypes = {
|
|
23
|
-
postgres: 'POSTGRES_15',
|
|
23
|
+
'postgres-clan': 'POSTGRES_15',
|
|
24
24
|
mysql: 'MYSQL_5_7',
|
|
25
25
|
mssql: 'SQLSERVER_2017_STANDARD',
|
|
26
26
|
};
|
|
@@ -28,7 +28,7 @@ module.exports = class extends BaseGenerator {
|
|
|
28
28
|
},
|
|
29
29
|
choices: (response) => {
|
|
30
30
|
const tierTypes = {
|
|
31
|
-
postgres: ['POSTGRES_13', 'POSTGRES_14', 'POSTGRES_15'],
|
|
31
|
+
'postgres-clan': ['POSTGRES_13', 'POSTGRES_14', 'POSTGRES_15'],
|
|
32
32
|
mysql: ['MYSQL_5_6', 'MYSQL_5_7'],
|
|
33
33
|
mssql: ['SQLSERVER_2017_STANDARD', 'SQLSERVER_2017_ENTERPRISE', 'SQLSERVER_2017_EXPRESS', 'SQLSERVER_2017_WEB'],
|
|
34
34
|
};
|
package/package.json
CHANGED
/package/generators/common-resources/cloudsql/templates/{postgres → postgres-clan}/instance/spec.hcl
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|