Provides a DAX Subnet Group resource.
resource "aws_dax_subnet_group" "example" {
name = "example"
subnet_ids = ["${aws_subnet.example1.id}", "${aws_subnet.example2.id}"]
}
The following arguments are supported:
name – (Required) The name of the subnet group. description - (Optional) A description of the subnet group. subnet_ids – (Required) A list of VPC subnet IDs for the subnet group. In addition to all arguments above, the following attributes are exported:
DAX Subnet Group can be imported using the name, e.g.
$ terraform import aws_dax_subnet_group.example my_dax_sg
© 2018 HashiCorpLicensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/aws/r/dax_subnet_group.html