while copying snap from one to another we need to change region
provider "aws" {
region = "us-west-1"
access_key = "AGQ"
secret_key = "Kurid"
}
resource "aws_ebs_snapshot_copy" "example_copy" {
source_snapshot_id = "snap-08bc5c27dad8e82b3"
source_region = "us-east-1"
tags = {
Name = "HelloWorld_copy_snap"
}
}
Comments
Post a Comment