-
Notifications
You must be signed in to change notification settings - Fork 149
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
Enable encryption at host for vms #4263
base: main
Are you sure you want to change the base?
Enable encryption at host for vms #4263
Conversation
Unit Test Results0 tests 0 ✅ 0s ⏱️ Results for commit 8a3e60f. ♻️ This comment has been updated with latest results. |
@@ -79,7 +79,7 @@ resource "azurerm_linux_virtual_machine_scale_set" "vm_linux" { | |||
disable_password_authentication = false | |||
admin_password = random_password.password.result | |||
custom_data = data.template_cloudinit_config.config.rendered | |||
encryption_at_host_enabled = false | |||
encryption_at_host_enabled = true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we enable this encryption always (similar to infrastructure_encryption_enabled
), or only when enable_cmk_encryption
is set to true? @marrobi @jonnyry @tamirkamara
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@SvenAelterman wdyt?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes I think so, it will use the Azure managed key if not. Looks to be valuable whether CMK is used or not.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@yuvalyaron just needs an addition to the CHANGELOG
Added encryption at host for VMs