binbashar / terraform-aws-ec2-basic-layout

Terraform module to deploy a typical EC2 layout that includes an instance with a security group and a dns record.
Apache License 2.0
5 stars 3 forks source link

Add root_block_device variables #10

Open exequielrafaela opened 4 years ago

exequielrafaela commented 4 years ago

What?

Add the following variables with this expected default values

  root_block_device = [
    {
      volume_type = "gp2"
      volume_size = 20
      encrypted   = true
    },
  ]

Why?

To grant this expected values by default.