Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add encrypted option to root_block_device #78

Merged
merged 1 commit into from
Nov 8, 2019
Merged

add encrypted option to root_block_device #78

merged 1 commit into from
Nov 8, 2019

Conversation

dinesh-auti
Copy link
Contributor

Description

The root_block_device block in aws_launch_configuration supports an encrypted parameter. This parameter was missing in the dynamic block in the module.
https://www.terraform.io/docs/providers/aws/r/launch_configuration.html#root_block_device

@dinesh-auti dinesh-auti changed the title added encrypted option to root_block_device add encrypted option to root_block_device Sep 16, 2019
@b-b3rn4rd
Copy link

b-b3rn4rd commented Oct 3, 2019

Wondering when this is going to be available? @antonbabenko

@stuart-c
Copy link

stuart-c commented Nov 8, 2019

Hi @antonbabenko do you know when this might be release? I'm really looking forward to being able encrypt root devices...

@antonbabenko antonbabenko merged commit 02ee561 into terraform-aws-modules:master Nov 8, 2019
@antonbabenko
Copy link
Member

Finally, I got some free time for terraform-aws-modules. My apologies for the delay!

v3.2.0 has been just released.

Thanks @stuart-c and @b-b3rn4rd for a nudge :)

@b-b3rn4rd
Copy link

No problems at all, just in case anyone else is looking to encrypt the root and/or additional volumes with a custom key. You can just provision the following resources to automatically encrypt all EBS volumes by default:

resource "aws_ebs_encryption_by_default" "example" {
  enabled = true
}

resource "aws_ebs_default_kms_key" "example" {
  key_arn = "${data.aws_kms_key.kms_key.arn}"
}

@github-actions
Copy link

I'm going to lock this pull request because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems related to this change, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Oct 29, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants