@@ -71,6 +71,32 @@ examples:
71
71
- ' postgresql.0.ssl.0.ca_certificate'
72
72
- ' postgresql.0.ssl.0.client_certificate'
73
73
- ' postgresql.0.ssl.0.client_key'
74
+ - name : ' database_migration_service_connection_profile_postgres_no_ssl'
75
+ primary_resource_id : ' postgresprofile'
76
+ vars :
77
+ sqldb : ' my-database'
78
+ sqldb_cert : ' my-cert'
79
+ sqldb_user : ' my-username'
80
+ sqldb_pass : ' my-password'
81
+ profile : ' my-profileid'
82
+ ignore_read_extra :
83
+ - ' postgresql.0.password'
84
+ - ' postgresql.0.ssl.0.ca_certificate'
85
+ - ' postgresql.0.ssl.0.client_certificate'
86
+ - ' postgresql.0.ssl.0.client_key'
87
+ - name : ' database_migration_service_connection_profile_postgres_required_ssl'
88
+ primary_resource_id : ' postgresprofile'
89
+ vars :
90
+ sqldb : ' my-database'
91
+ sqldb_cert : ' my-cert'
92
+ sqldb_user : ' my-username'
93
+ sqldb_pass : ' my-password'
94
+ profile : ' my-profileid'
95
+ ignore_read_extra :
96
+ - ' postgresql.0.password'
97
+ - ' postgresql.0.ssl.0.ca_certificate'
98
+ - ' postgresql.0.ssl.0.client_certificate'
99
+ - ' postgresql.0.ssl.0.client_key'
74
100
- name : ' database_migration_service_connection_profile_oracle'
75
101
primary_resource_id : ' oracleprofile'
76
102
vars :
@@ -232,10 +258,11 @@ properties:
232
258
type : Enum
233
259
description : |
234
260
The current connection profile state.
235
- output : true
236
261
enum_values :
237
262
- ' SERVER_ONLY'
238
263
- ' SERVER_CLIENT'
264
+ - ' REQUIRED'
265
+ - ' NONE'
239
266
- name : ' clientKey'
240
267
type : String
241
268
description : |
@@ -255,9 +282,8 @@ properties:
255
282
- name : ' caCertificate'
256
283
type : String
257
284
description : |
258
- Required. Input only. The x509 PEM-encoded certificate of the CA that signed the source database server's certificate.
285
+ Input only. The x509 PEM-encoded certificate of the CA that signed the source database server's certificate.
259
286
The replica will use this certificate to verify it's connecting to the right host.
260
- required : true
261
287
immutable : true
262
288
sensitive : true
263
289
custom_flatten : ' templates/terraform/custom_flatten/database_migration_service_connection_profile_mysql_ssl_ca_certificate.go.tmpl'
@@ -326,10 +352,11 @@ properties:
326
352
type : Enum
327
353
description : |
328
354
The current connection profile state.
329
- output : true
330
355
enum_values :
331
356
- ' SERVER_ONLY'
332
357
- ' SERVER_CLIENT'
358
+ - ' REQUIRED'
359
+ - ' NONE'
333
360
- name : ' clientKey'
334
361
type : String
335
362
description : |
@@ -353,9 +380,8 @@ properties:
353
380
- name : ' caCertificate'
354
381
type : String
355
382
description : |
356
- Required. Input only. The x509 PEM-encoded certificate of the CA that signed the source database server's certificate.
383
+ Input only. The x509 PEM-encoded certificate of the CA that signed the source database server's certificate.
357
384
The replica will use this certificate to verify it's connecting to the right host.
358
- required : true
359
385
immutable : true
360
386
sensitive : true
361
387
custom_flatten : ' templates/terraform/custom_flatten/database_migration_service_connection_profile_postgresql_ssl_ca_certificate.go.tmpl'
@@ -456,9 +482,8 @@ properties:
456
482
- name : ' caCertificate'
457
483
type : String
458
484
description : |
459
- Required. Input only. The x509 PEM-encoded certificate of the CA that signed the source database server's certificate.
485
+ Input only. The x509 PEM-encoded certificate of the CA that signed the source database server's certificate.
460
486
The replica will use this certificate to verify it's connecting to the right host.
461
- required : true
462
487
immutable : true
463
488
sensitive : true
464
489
custom_flatten : ' templates/terraform/custom_flatten/database_migration_service_connection_profile_oracle_ssl_ca_certificate.go.tmpl'
0 commit comments