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
sql: removed `settings.ip_configuration.require_ssl` from `google_sql_database_instance` in favor of `settings.ip_configuration.ssl_mode`. This field was intended to be removed in 6.0.0.
Copy file name to clipboardExpand all lines: google-beta/services/sql/resource_sql_database_instance.go
+1-13Lines changed: 1 addition & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -443,13 +443,6 @@ is set to true. Defaults to ZONAL.`,
443
443
AtLeastOneOf: ipConfigurationKeys,
444
444
Description: `Whether this Cloud SQL instance should be assigned a public IPV4 address. At least ipv4_enabled must be enabled or a private_network must be configured.`,
445
445
},
446
-
"require_ssl": {
447
-
Type: schema.TypeBool,
448
-
Optional: true,
449
-
AtLeastOneOf: ipConfigurationKeys,
450
-
Description: `Whether SSL connections over IP are enforced or not. To change this field, also set the corresponding value in ssl_mode if it has been set too.`,
451
-
Deprecated: "`require_ssl` will be fully deprecated in a future major release. For now, please use `ssl_mode` with a compatible `require_ssl` value instead.",
452
-
},
453
446
"private_network": {
454
447
Type: schema.TypeString,
455
448
Optional: true,
@@ -498,7 +491,7 @@ is set to true. Defaults to ZONAL.`,
Description: `Specify how SSL connection should be enforced in DB connections. This field provides more SSL enforcement options compared to require_ssl. To change this field, also set the correspoding value in require_ssl until next major release.`,
494
+
Description: `Specify how SSL connection should be enforced in DB connections.`,
502
495
AtLeastOneOf: ipConfigurationKeys,
503
496
},
504
497
"server_ca_mode": {
@@ -2271,11 +2264,6 @@ func flattenIpConfiguration(ipConfiguration *sqladmin.IpConfiguration, d *schema
Copy file name to clipboardExpand all lines: website/docs/guides/version_6_upgrade.html.markdown
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -369,9 +369,9 @@ Support for the deletionProtectionEnabled field has been added. Redis clusters w
369
369
370
370
## Resource: `google_sql_database_instance`
371
371
372
-
### `settings.ip_configuration.require_ssl` is now removed
372
+
### `settings.ip_configuration.require_ssl` is now removed (in 6.0.1)
373
373
374
-
Removed in favor of field `settings.ip_configuration.ssl_mode`.
374
+
Removed in favor of field `settings.ip_configuration.ssl_mode`.`settings.ip_configuration.require_ssl` was intended to be removed in 6.0.0, but is removed in 6.0.1 instead.
0 commit comments