stx
Storage Transfer Service
MigrationGCP
General
General information about the service.
Description
Storage Transfer Service enables high-performance data transfers to Google 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
stx-{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" "s3_to_gcs" {2 description = "stx-${var.environment}"34 transfer_spec {5 aws_s3_data_source {6 bucket_name = var.s3_bucket7 aws_access_key {8 access_key_id = var.aws_access_key9 secret_access_key = var.aws_secret_key10 }11 }12 gcs_data_sink {13 bucket_name = var.gcs_bucket14 }15 }16}
Utilities
Utilities to support app deployment or configuration.