sts
Transfer Service
MigrationGCP
General
General information about the service.
Description
Google Storage Transfer Service enables you to transfer data from online and on-premises sources to Cloud Storage.
Service ID
storagetransfer.googleapis.comResource Pattern
transferJobs/{job}References
Chat
Powered by AITalk to this service to learn more about it.
Suggested questions:
Naming
The conventions, rules, and restrictions for naming this service.
Naming Convention
sts-{workload}-{environment}Length
1-63
Valid Characters
Lowercase letters, numbers, hyphens
Scope
project
Code
Deploy your infrastructure as code using your preferred tooling.
Official Documentation
terraform
1resource "google_storage_transfer_job" "main" {2 description = "sts-${var.environment}"34 transfer_spec {5 gcs_data_source {6 bucket_name = var.source_bucket7 }8 gcs_data_sink {9 bucket_name = var.dest_bucket10 }11 }1213 schedule {14 schedule_start_date {15 year = 202416 month = 117 day = 118 }19 }20}
Utilities
Utilities to support app deployment or configuration.