Skip to content

Commit

Permalink
examples/basic/main.tf: Add usage of "root_block_device" (terraform-a…
Browse files Browse the repository at this point in the history
  • Loading branch information
jjardon authored and antonbabenko committed Mar 22, 2019
1 parent 9d289e9 commit 7f2042e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions examples/basic/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down

0 comments on commit 7f2042e

Please sign in to comment.