Skip to content

Commit 1733919

Browse files
jjardonantonbabenko
authored andcommitted
examples/basic/main.tf: Add usage of "root_block_device" (#18) (#65)
1 parent 7f30697 commit 1733919

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

examples/basic/main.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,11 @@ module "ec2" {
6464
subnet_id = "${element(data.aws_subnet_ids.all.ids, 0)}"
6565
vpc_security_group_ids = ["${module.security_group.this_security_group_id}"]
6666
associate_public_ip_address = true
67+
68+
root_block_device = [{
69+
volume_type = "gp2"
70+
volume_size = 10
71+
}]
6772
}
6873

6974
module "ec2_with_t2_unlimited" {

0 commit comments

Comments
 (0)