From 7f2042efe318788b03b2abf174bf7b4728f89dca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20Jard=C3=B3n?= Date: Fri, 22 Mar 2019 07:52:13 -0700 Subject: [PATCH] examples/basic/main.tf: Add usage of "root_block_device" (#18) (#65) --- examples/basic/main.tf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/examples/basic/main.tf b/examples/basic/main.tf index c9dec7eb..6c471223 100644 --- a/examples/basic/main.tf +++ b/examples/basic/main.tf @@ -64,6 +64,11 @@ module "ec2" { subnet_id = "${element(data.aws_subnet_ids.all.ids, 0)}" vpc_security_group_ids = ["${module.security_group.this_security_group_id}"] associate_public_ip_address = true + + root_block_device = [{ + volume_type = "gp2" + volume_size = 10 + }] } module "ec2_with_t2_unlimited" {