dms

Database Migration Service

MigrationGCP
General

General information about the service.

Description

Google Database Migration Service makes it easy to migrate databases to Google Cloud.

Service ID

datamigration.googleapis.com

Resource Pattern

projects/{project}/locations/{location}/migrationJobs/{job}

Chat

Powered by AI

Talk to this service to learn more about it.

Suggested questions:

Naming

The conventions, rules, and restrictions for naming this service.

Naming Convention

dms-{workload}-{environment}

Length

1-63

Valid Characters

Lowercase letters, numbers, hyphens

Scope

project

Code

Deploy your infrastructure as code using your preferred tooling.

Official DocumentationTerraform
terraform
1resource "google_database_migration_service_connection_profile" "main" {
2 location = var.region
3 connection_profile_id = "dms-${var.environment}"
4 display_name = "dms-${var.environment}"
5
6 cloudsql {
7 settings {
8 database_version = "MYSQL_8_0"
9 tier = "db-f1-micro"
10 source_id = "source-id"
11 }
12 }
13}
Utilities

Utilities to support app deployment or configuration.