diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml
index c00d2e83..cb826713 100644
--- a/.github/workflows/pre-commit.yml
+++ b/.github/workflows/pre-commit.yml
@@ -8,6 +8,7 @@ on:
env:
TERRAFORM_DOCS_VERSION: v0.16.0
+ TFLINT_VERSION: v0.44.1
jobs:
collectInputs:
@@ -21,7 +22,7 @@ jobs:
- name: Get root directories
id: dirs
- uses: clowdhaus/terraform-composite-actions/directories@v1.8.0
+ uses: clowdhaus/terraform-composite-actions/directories@v1.8.3
preCommitMinVersions:
name: Min TF pre-commit
@@ -36,24 +37,26 @@ jobs:
- name: Terraform min/max versions
id: minMax
- uses: clowdhaus/terraform-min-max@v1.2.0
+ uses: clowdhaus/terraform-min-max@v1.2.4
with:
directory: ${{ matrix.directory }}
- name: Pre-commit Terraform ${{ steps.minMax.outputs.minVersion }}
# Run only validate pre-commit check on min version supported
if: ${{ matrix.directory != '.' }}
- uses: clowdhaus/terraform-composite-actions/pre-commit@v1.8.0
+ uses: clowdhaus/terraform-composite-actions/pre-commit@v1.8.3
with:
terraform-version: ${{ steps.minMax.outputs.minVersion }}
+ tflint-version: ${{ env.TFLINT_VERSION }}
args: 'terraform_validate --color=always --show-diff-on-failure --files ${{ matrix.directory }}/*'
- name: Pre-commit Terraform ${{ steps.minMax.outputs.minVersion }}
# Run only validate pre-commit check on min version supported
if: ${{ matrix.directory == '.' }}
- uses: clowdhaus/terraform-composite-actions/pre-commit@v1.8.0
+ uses: clowdhaus/terraform-composite-actions/pre-commit@v1.8.3
with:
terraform-version: ${{ steps.minMax.outputs.minVersion }}
+ tflint-version: ${{ env.TFLINT_VERSION }}
args: 'terraform_validate --color=always --show-diff-on-failure --files $(ls *.tf)'
preCommitMaxVersion:
@@ -69,18 +72,12 @@ jobs:
- name: Terraform min/max versions
id: minMax
- uses: clowdhaus/terraform-min-max@v1.2.0
-
- - name: Install hcledit (for terraform_wrapper_module_for_each hook)
- shell: bash
- run: |
- curl -L "$(curl -s https://api.github.com/repos/minamijoyo/hcledit/releases/latest | grep -o -E -m 1 "https://.+?_linux_amd64.tar.gz")" > hcledit.tgz
- sudo tar -xzf hcledit.tgz -C /usr/bin/ hcledit
- rm -f hcledit.tgz 2> /dev/null
- hcledit version
+ uses: clowdhaus/terraform-min-max@v1.2.4
- name: Pre-commit Terraform ${{ steps.minMax.outputs.maxVersion }}
- uses: clowdhaus/terraform-composite-actions/pre-commit@v1.8.0
+ uses: clowdhaus/terraform-composite-actions/pre-commit@v1.8.3
with:
terraform-version: ${{ steps.minMax.outputs.maxVersion }}
+ tflint-version: ${{ env.TFLINT_VERSION }}
terraform-docs-version: ${{ env.TERRAFORM_DOCS_VERSION }}
+ install-hcledit: true
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index 314c02b1..75deea30 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/antonbabenko/pre-commit-terraform
- rev: v1.76.0
+ rev: v1.77.0
hooks:
- id: terraform_fmt
- id: terraform_wrapper_module_for_each
@@ -24,7 +24,7 @@ repos:
- '--args=--only=terraform_standard_module_structure'
- '--args=--only=terraform_workspace_remote'
- repo: https://github.com/pre-commit/pre-commit-hooks
- rev: v4.3.0
+ rev: v4.4.0
hooks:
- id: check-merge-conflict
- id: end-of-file-fixer
diff --git a/README.md b/README.md
index a7af2b00..cdd8766f 100644
--- a/README.md
+++ b/README.md
@@ -232,6 +232,7 @@ No modules.
| [ipv6\_addresses](#input\_ipv6\_addresses) | Specify one or more IPv6 addresses from the range of the subnet to associate with the primary network interface | `list(string)` | `null` | no |
| [key\_name](#input\_key\_name) | Key name of the Key Pair to use for the instance; which can be managed using the `aws_key_pair` resource | `string` | `null` | no |
| [launch\_template](#input\_launch\_template) | Specifies a Launch Template to configure the instance. Parameters configured on this resource will override the corresponding parameters in the Launch Template | `map(string)` | `null` | no |
+| [maintenance\_options](#input\_maintenance\_options) | The maintenance options for the instance | `any` | `{}` | no |
| [metadata\_options](#input\_metadata\_options) | Customize the metadata options of the instance | `map(string)` | `{}` | no |
| [monitoring](#input\_monitoring) | If true, the launched EC2 instance will have detailed monitoring enabled | `bool` | `false` | no |
| [name](#input\_name) | Name to be used on EC2 instance created | `string` | `""` | no |
diff --git a/examples/complete/main.tf b/examples/complete/main.tf
index 301931b6..4c638c9d 100644
--- a/examples/complete/main.tf
+++ b/examples/complete/main.tf
@@ -129,6 +129,10 @@ module "ec2_t2_unlimited" {
vpc_security_group_ids = [module.security_group.security_group_id]
associate_public_ip_address = true
+ maintenance_options = {
+ auto_recovery = "default"
+ }
+
tags = local.tags
}
@@ -233,7 +237,6 @@ module "ec2_spot_instance" {
cpu_core_count = 2 # default 4
cpu_threads_per_core = 1 # default 2
-
enable_volume_tags = false
root_block_device = [
{
diff --git a/main.tf b/main.tf
index 9a0d4a23..a13e6e00 100644
--- a/main.tf
+++ b/main.tf
@@ -127,6 +127,13 @@ resource "aws_instance" "this" {
}
}
+ dynamic "maintenance_options" {
+ for_each = length(var.maintenance_options) > 0 ? [var.maintenance_options] : []
+ content {
+ auto_recovery = try(maintenance_options.value.auto_recovery, null)
+ }
+ }
+
enclave_options {
enabled = var.enclave_options_enabled
}
diff --git a/variables.tf b/variables.tf
index 584a62d6..9d4a3429 100644
--- a/variables.tf
+++ b/variables.tf
@@ -28,6 +28,12 @@ variable "associate_public_ip_address" {
default = null
}
+variable "maintenance_options" {
+ description = "The maintenance options for the instance"
+ type = any
+ default = {}
+}
+
variable "availability_zone" {
description = "AZ to start the instance in"
type = string
diff --git a/wrappers/main.tf b/wrappers/main.tf
index 4b9237bf..c9700f24 100644
--- a/wrappers/main.tf
+++ b/wrappers/main.tf
@@ -8,6 +8,7 @@ module "wrapper" {
ami_ssm_parameter = try(each.value.ami_ssm_parameter, var.defaults.ami_ssm_parameter, "/aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2")
ami = try(each.value.ami, var.defaults.ami, null)
associate_public_ip_address = try(each.value.associate_public_ip_address, var.defaults.associate_public_ip_address, null)
+ maintenance_options = try(each.value.maintenance_options, var.defaults.maintenance_options, {})
availability_zone = try(each.value.availability_zone, var.defaults.availability_zone, null)
capacity_reservation_specification = try(each.value.capacity_reservation_specification, var.defaults.capacity_reservation_specification, {})
cpu_credits = try(each.value.cpu_credits, var.defaults.cpu_credits, null)