HIGH
Source
Trivy/CSPM
CSPM ID
db-publicly-accessible
ID
AVD-GCP-0017

Ensure that Cloud SQL Database Instances are not publicly exposed

Database instances should be configured so that they are not available over the public internet, but to internal compute resources which access them.

Impact

Public exposure of sensitive data

Follow the appropriate remediation steps below to resolve the issue.

  1. Log in to the Google Cloud Platform Console.

  2. Scroll down the left navigation panel and choose the “SQL” option under the “Storage.” Step

  3. On the “SQL” page , click on the “Instance ID” as a link option to select the “SQL” instance.Step

  4. On the “SQL” page, click on the “Replicas” under the “MASTER INSTANCE.”Step

  5. On the “Replicas” page, check is there any “Relica” is there or not. Creating SQL instances in with a single AZ creates a single point of failure for all systems Step

  6. Repeat steps number 2 - 5 to check other SQL instance in the account.

  7. Navigate to the “SQL” option under the “Storage”, choose the “SQL Instance”.Step

  8. Click on the “Replicas” from the left panel and click on the “Create read replica” button at the bottom.Step

  9. On the “Create read replica”, click on the checkbox next to “Automate backups”, “Enable binary logging” and click on the “Continue” button.Step

  10. Once you click on the “Continue” button, “Changes require restart” tab will open and click on the “SAVE AND RESTART” option.Step

  11. Click on the “Create” button to make the changes.Step

  12. Repeat steps number 7 - 11 to ensure all SQL instances should be created in multiple AZs to ensure proper failover.

Remove public access from database instances

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
 resource "google_sql_database_instance" "postgres" {
 	name             = "postgres-instance-a"
 	database_version = "POSTGRES_11"
 	
 	settings {
 		tier = "db-f1-micro"
 	
 		ip_configuration {
 			ipv4_enabled = false
 			authorized_networks {
 				value           = "10.0.0.1/24"
 				name            = "internal"
 			}
 		}
 	}
 }