Skip to content

Commit c49475f

Browse files
authored
feat: add tags support to root block device (#218)
1 parent f24f654 commit c49475f

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,13 @@ data "aws_ami" "ubuntu-xenial" {
8585
| Name | Version |
8686
|------|---------|
8787
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.12.6 |
88-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 2.65 |
88+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 3.24 |
8989

9090
## Providers
9191

9292
| Name | Version |
9393
|------|---------|
94-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 2.65 |
94+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 3.24 |
9595

9696
## Modules
9797

main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ resource "aws_instance" "this" {
3535
kms_key_id = lookup(root_block_device.value, "kms_key_id", null)
3636
volume_size = lookup(root_block_device.value, "volume_size", null)
3737
volume_type = lookup(root_block_device.value, "volume_type", null)
38+
tags = lookup(root_block_device.value, "tags", null)
3839
}
3940
}
4041

versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ terraform {
22
required_version = ">= 0.12.6"
33

44
required_providers {
5-
aws = ">= 2.65"
5+
aws = ">= 3.24"
66
}
77
}

0 commit comments

Comments
 (0)