Adds permission to create volumes off of a given EBS Snapshot.
resource "aws_snapshot_create_volume_permission" "example_perm" {
snapshot_id = "${aws_ebs_snapshot.example_snapshot.id}"
account_id = "12345678"
}
resource "aws_ebs_volume" "example" {
availability_zone = "us-west-2a"
size = 40
}
resource "aws_ebs_snapshot" "example_snapshot" {
volume_id = "${aws_ebs_volume.example.id}"
}
The following arguments are supported:
snapshot_id - (required) A snapshot ID account_id - (required) An AWS Account ID to add create volume permissions In addition to all arguments above, the following attributes are exported:
id - A combination of "snapshot_id-account_id".
© 2018 HashiCorpLicensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/aws/r/snapshot_create_volume_permission.html