Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

resource/aws_ebs_volume: Allow both 'snapshot_id' and 'size' #17243

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changelog/17243.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:bug
resource/aws_ebs_volume: Allow both `size` and `snapshot_id` attributes to be specified
```
4 changes: 2 additions & 2 deletions aws/resource_aws_ebs_volume.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,14 @@ func resourceAwsEbsVolume() *schema.Resource {
Type: schema.TypeInt,
Optional: true,
Computed: true,
ExactlyOneOf: []string{"size", "snapshot_id"},
AtLeastOneOf: []string{"size", "snapshot_id"},
},
"snapshot_id": {
Type: schema.TypeString,
Optional: true,
Computed: true,
ForceNew: true,
ExactlyOneOf: []string{"size", "snapshot_id"},
AtLeastOneOf: []string{"size", "snapshot_id"},
},
"outpost_arn": {
Type: schema.TypeString,
Expand Down
143 changes: 143 additions & 0 deletions aws/resource_aws_ebs_volume_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -595,6 +595,84 @@ func TestAccAWSEBSVolume_gp3_throughput(t *testing.T) {
})
}

func TestAccAWSEBSVolume_snapshotID(t *testing.T) {
var v ec2.Volume
resourceName := "aws_ebs_volume.test"
snapshotResourceName := "aws_ebs_snapshot.test"
rName := acctest.RandomWithPrefix("tf-acc-test")

resource.ParallelTest(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
IDRefreshName: resourceName,
Providers: testAccProviders,
CheckDestroy: testAccCheckVolumeDestroy,
Steps: []resource.TestStep{
{
Config: testAccAwsEbsVolumeConfigSnapshotId(rName),
Check: resource.ComposeTestCheckFunc(
testAccCheckVolumeExists(resourceName, &v),
testAccMatchResourceAttrRegionalARN(resourceName, "arn", "ec2", regexp.MustCompile(`volume/vol-.+`)),
resource.TestCheckResourceAttr(resourceName, "encrypted", "false"),
resource.TestCheckResourceAttr(resourceName, "iops", "100"),
resource.TestCheckResourceAttr(resourceName, "kms_key_id", ""),
resource.TestCheckResourceAttr(resourceName, "multi_attach_enabled", "false"),
resource.TestCheckResourceAttr(resourceName, "outpost_arn", ""),
resource.TestCheckResourceAttr(resourceName, "size", "1"),
resource.TestCheckResourceAttrPair(resourceName, "snapshot_id", snapshotResourceName, "id"),
resource.TestCheckResourceAttr(resourceName, "tags.%", "1"),
resource.TestCheckResourceAttr(resourceName, "tags.Name", rName),
resource.TestCheckResourceAttr(resourceName, "throughput", "0"),
resource.TestCheckResourceAttr(resourceName, "type", "gp2"),
),
},
{
ResourceName: resourceName,
ImportState: true,
ImportStateVerify: true,
},
},
})
}

func TestAccAWSEBSVolume_snapshotIDAndSize(t *testing.T) {
var v ec2.Volume
resourceName := "aws_ebs_volume.test"
snapshotResourceName := "aws_ebs_snapshot.test"
rName := acctest.RandomWithPrefix("tf-acc-test")

resource.ParallelTest(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
IDRefreshName: resourceName,
Providers: testAccProviders,
CheckDestroy: testAccCheckVolumeDestroy,
Steps: []resource.TestStep{
{
Config: testAccAwsEbsVolumeConfigSnapshotIdAndSize(rName, 20),
Check: resource.ComposeTestCheckFunc(
testAccCheckVolumeExists(resourceName, &v),
testAccMatchResourceAttrRegionalARN(resourceName, "arn", "ec2", regexp.MustCompile(`volume/vol-.+`)),
resource.TestCheckResourceAttr(resourceName, "encrypted", "false"),
resource.TestCheckResourceAttr(resourceName, "iops", "100"),
resource.TestCheckResourceAttr(resourceName, "kms_key_id", ""),
resource.TestCheckResourceAttr(resourceName, "multi_attach_enabled", "false"),
resource.TestCheckResourceAttr(resourceName, "outpost_arn", ""),
resource.TestCheckResourceAttr(resourceName, "size", "20"),
resource.TestCheckResourceAttrPair(resourceName, "snapshot_id", snapshotResourceName, "id"),
resource.TestCheckResourceAttr(resourceName, "tags.%", "1"),
resource.TestCheckResourceAttr(resourceName, "tags.Name", rName),
resource.TestCheckResourceAttr(resourceName, "throughput", "0"),
resource.TestCheckResourceAttr(resourceName, "type", "gp2"),
),
},
{
ResourceName: resourceName,
ImportState: true,
ImportStateVerify: true,
},
},
})
}

func TestAccAWSEBSVolume_disappears(t *testing.T) {
var v ec2.Volume
resourceName := "aws_ebs_volume.test"
Expand Down Expand Up @@ -1166,3 +1244,68 @@ resource "aws_ebs_volume" "test" {
}
`, rName, iops))
}

func testAccAwsEbsVolumeConfigSnapshotId(rName string) string {
return composeConfig(
testAccAvailableAZsNoOptInConfig(),
fmt.Sprintf(`
resource "aws_ebs_volume" "source" {
availability_zone = data.aws_availability_zones.available.names[0]
size = 1

tags = {
Name = %[1]q
}
}

resource "aws_ebs_snapshot" "test" {
volume_id = aws_ebs_volume.source.id

tags = {
Name = %[1]q
}
}

resource "aws_ebs_volume" "test" {
availability_zone = data.aws_availability_zones.available.names[0]
snapshot_id = aws_ebs_snapshot.test.id

tags = {
Name = %[1]q
}
}
`, rName))
}

func testAccAwsEbsVolumeConfigSnapshotIdAndSize(rName string, size int) string {
return composeConfig(
testAccAvailableAZsNoOptInConfig(),
fmt.Sprintf(`
resource "aws_ebs_volume" "source" {
availability_zone = data.aws_availability_zones.available.names[0]
size = 10

tags = {
Name = %[1]q
}
}

resource "aws_ebs_snapshot" "test" {
volume_id = aws_ebs_volume.source.id

tags = {
Name = %[1]q
}
}

resource "aws_ebs_volume" "test" {
availability_zone = data.aws_availability_zones.available.names[0]
snapshot_id = aws_ebs_snapshot.test.id
size = %[2]d

tags = {
Name = %[1]q
}
}
`, rName, size))
}
2 changes: 1 addition & 1 deletion tools/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
_ "github.com/bflad/tfproviderdocs"
_ "github.com/client9/misspell/cmd/misspell"
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
_ "github.com/hashicorp/go-changelog/cmd/changelog-build"
_ "github.com/katbyte/terrafmt"
_ "github.com/terraform-linters/tflint"
_ "github.com/hashicorp/go-changelog/cmd/changelog-build"
)
2 changes: 1 addition & 1 deletion website/docs/r/ebs_volume.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ resource "aws_ebs_volume" "example" {
}
```

~> **NOTE**: One of `size` or `snapshot_id` is required when specifying an EBS volume
~> **NOTE**: At least one of `size` or `snapshot_id` is required when specifying an EBS volume

## Argument Reference

Expand Down