Skip to content

Commit 1bfaf2b

Browse files
akli1512semantic-release-botAkli Azzout
authored
feat: replace default volume type gp2 by gp3 (#338)
* chore(release): 4.25.0 [skip ci] ## [4.25.0](4.24.1...4.25.0) (2021-05-11) ### Features * Add tags to aws_iam_policy ([#318](#318)) ([3450b4d](3450b4d)) * chore: use gp3 volume type Co-authored-by: semantic-release-bot <[email protected]> Co-authored-by: Akli Azzout <[email protected]>
1 parent 6a240c9 commit 1bfaf2b

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [4.25.0](https://github.com/npalm/terraform-aws-gitlab-runner/compare/4.24.1...4.25.0) (2021-05-11)
4+
5+
6+
### Features
7+
8+
* Add tags to aws_iam_policy ([#318](https://github.com/npalm/terraform-aws-gitlab-runner/issues/318)) ([3450b4d](https://github.com/npalm/terraform-aws-gitlab-runner/commit/3450b4db509e050bbfbe261a675d3e01d4befe80))
9+
310
### [4.24.1](https://github.com/npalm/terraform-aws-gitlab-runner/compare/4.24.0...4.24.1) (2021-03-11)
411

512

main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ resource "aws_launch_configuration" "gitlab_runner_instance" {
220220
for_each = [var.runner_root_block_device]
221221
content {
222222
delete_on_termination = lookup(root_block_device.value, "delete_on_termination", true)
223-
volume_type = lookup(root_block_device.value, "volume_type", "gp2")
223+
volume_type = lookup(root_block_device.value, "volume_type", "gp3")
224224
volume_size = lookup(root_block_device.value, "volume_size", 8)
225225
encrypted = lookup(root_block_device.value, "encrypted", true)
226226
iops = lookup(root_block_device.value, "iops", null)

0 commit comments

Comments
 (0)