commit | 01d132b335c22dc143987f74f5e4ad41cc407ccb | [log] [tgz] |
---|---|---|
author | Kelley Spoon <kelley.spoon@linaro.org> | Wed Jul 22 09:15:29 2020 -0500 |
committer | Benjamin Copeland <ben.copeland@linaro.org> | Tue Oct 20 11:47:08 2020 +0000 |
tree | 25b34656896b547986ff1f1c3a046913db26880d | |
parent | 209f15231773eb335e54c79bba9f66cba1375267 [diff] |
infrastructure: set root disk to 100GB Without setting a size for the root disk, AWS defaults to 8GB. Let's set that to 100GB so we don't have to keep adding partitions later on. Change-Id: I1893396f1629db4ed84501cc4b520c410ba019d4
diff --git a/infra.tf b/infra.tf index ab06c6b..200b5cb 100644 --- a/infra.tf +++ b/infra.tf
@@ -34,4 +34,8 @@ Name = "staging-ci" Environment = "staging" } + root_block_device { + volume_size = 100 + volume_type = "gp2" + } }