-
Notifications
You must be signed in to change notification settings - Fork 470
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 support for disk_encryption_set_id
#195
Conversation
92ea27f
to
b0a55d5
Compare
c6fe6db
to
c699f06
Compare
test/fixture/providers.tf
Outdated
} | ||
curl = { | ||
source = "anschoewe/curl" | ||
version = "1.0.2" |
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.
Shall we be more flexible on version here?
test/fixture/disk_encryption_set.tf
Outdated
|
||
resource "azurerm_key_vault" "des_vault" { | ||
name = "${random_string.key_vault_prefix.result}-des-keyvault" | ||
location = azurerm_resource_group.main.location |
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.
Indent here.
Thanks @jiaweitao001 , would please give this pr another review? Thanks. |
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.
Looks good. Thanks!
Make version restriction more flexible.
7872125
to
4eb06d5
Compare
This patch add support for
disk_encryption_set_id
to harden the cluster's security and solve #194 . We've used Checkov and Tflint to scan the test code and ignore one issue by comment. This patch should partially solve #183.