Skip to content

[Automated Preview][terraform-aws-server] feat: add support for custom KMS key for root volume encryption #2683

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

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,10 @@ module "single_server" {
# The IOPS to allocate for the root volume.
root_volume_iops = null

# Optional Amazon Resource Name (ARN) of the KMS Key to use when encrypting
# the volume
root_volume_kms_key_id = null

# The size of the root volume, in gigabytes.
root_volume_size = 8

Expand Down Expand Up @@ -612,6 +616,10 @@ inputs = {
# The IOPS to allocate for the root volume.
root_volume_iops = null

# Optional Amazon Resource Name (ARN) of the KMS Key to use when encrypting
# the volume
root_volume_kms_key_id = null

# The size of the root volume, in gigabytes.
root_volume_size = 8

Expand Down Expand Up @@ -1142,6 +1150,15 @@ The IOPS to allocate for the root volume.
<HclListItemDefaultValue defaultValue="null"/>
</HclListItem>

<HclListItem name="root_volume_kms_key_id" requirement="optional" type="string">
<HclListItemDescription>

Optional Amazon Resource Name (ARN) of the KMS Key to use when encrypting the volume

</HclListItemDescription>
<HclListItemDefaultValue defaultValue="null"/>
</HclListItem>

<HclListItem name="root_volume_size" requirement="optional" type="number">
<HclListItemDescription>

Expand Down Expand Up @@ -1306,6 +1323,6 @@ When used in combination with user_data or user_data_base64, a user_data change
"https://github.com/gruntwork-io/terraform-aws-server/tree/v1.0.1/modules/single-server/outputs.tf"
],
"sourcePlugin": "module-catalog-api",
"hash": "a5bc0b32df8f5cb7a27758b96645c94b"
"hash": "d9dbc15095f44c2ef5c5f7a19b50dada"
}
##DOCS-SOURCER-END -->