-
Notifications
You must be signed in to change notification settings - Fork 469
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
25c45a7
commit 56eb644
Showing
12 changed files
with
252 additions
and
147 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
data "azurerm_client_config" "current" {} | ||
|
||
resource "random_string" "key_vault_prefix" { | ||
length = 6 | ||
special = false | ||
upper = false | ||
numeric = false | ||
} | ||
|
||
data "curl" "public_ip" { | ||
count = var.key_vault_firewall_bypass_ip_cidr == null ? 1 : 0 | ||
|
||
http_method = "GET" | ||
uri = "https://api.ipify.org?format=json" | ||
} | ||
|
||
locals { | ||
# We cannot use coalesce here because it's not short-circuit and public_ip's index will cause error | ||
public_ip = var.key_vault_firewall_bypass_ip_cidr == null ? jsondecode(data.curl.public_ip[0].response).ip : var.key_vault_firewall_bypass_ip_cidr | ||
} | ||
|
||
resource "azurerm_key_vault" "des_vault" { | ||
location = local.resource_group.location | ||
name = "${random_string.key_vault_prefix.result}-des-keyvault" | ||
resource_group_name = local.resource_group.name | ||
sku_name = "premium" | ||
tenant_id = data.azurerm_client_config.current.tenant_id | ||
enabled_for_disk_encryption = true | ||
purge_protection_enabled = true | ||
soft_delete_retention_days = 7 | ||
|
||
network_acls { | ||
bypass = "AzureServices" | ||
default_action = "Deny" | ||
ip_rules = [local.public_ip] | ||
} | ||
} | ||
|
||
resource "azurerm_key_vault_access_policy" "current_user" { | ||
key_vault_id = azurerm_key_vault.des_vault.id | ||
object_id = coalesce(var.managed_identity_principal_id, data.azurerm_client_config.current.object_id) | ||
tenant_id = data.azurerm_client_config.current.tenant_id | ||
key_permissions = [ | ||
"Get", | ||
"Create", | ||
"Delete", | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
resource "azurerm_key_vault_key" "kms" { | ||
name = "etcd-encryption" | ||
key_vault_id = azurerm_key_vault.des_vault.id | ||
key_type = "RSA" | ||
key_size = 2048 | ||
|
||
key_opts = [ | ||
"decrypt", | ||
"encrypt", | ||
"sign", | ||
"unwrapKey", | ||
"verify", | ||
"wrapKey", | ||
] | ||
|
||
depends_on = [ | ||
azurerm_key_vault_access_policy.current_user | ||
] | ||
} | ||
|
||
resource "azurerm_key_vault_access_policy" "kms" { | ||
key_vault_id = azurerm_key_vault.des_vault.id | ||
object_id = azurerm_user_assigned_identity.test.id | ||
tenant_id = azurerm_user_assigned_identity.test.tenant_id | ||
key_permissions = [ | ||
"Decrypt", | ||
"Encrypt", | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
data "azurerm_client_config" "current" {} | ||
|
||
resource "random_string" "key_vault_prefix" { | ||
length = 6 | ||
special = false | ||
upper = false | ||
numeric = false | ||
} | ||
|
||
data "curl" "public_ip" { | ||
count = var.key_vault_firewall_bypass_ip_cidr == null ? 1 : 0 | ||
|
||
http_method = "GET" | ||
uri = "https://api.ipify.org?format=json" | ||
} | ||
|
||
locals { | ||
# We cannot use coalesce here because it's not short-circuit and public_ip's index will cause error | ||
public_ip = var.key_vault_firewall_bypass_ip_cidr == null ? jsondecode(data.curl.public_ip[0].response).ip : var.key_vault_firewall_bypass_ip_cidr | ||
} | ||
|
||
resource "azurerm_key_vault" "des_vault" { | ||
location = local.resource_group.location | ||
name = "${random_string.key_vault_prefix.result}-des-keyvault" | ||
resource_group_name = local.resource_group.name | ||
sku_name = "premium" | ||
tenant_id = data.azurerm_client_config.current.tenant_id | ||
enabled_for_disk_encryption = true | ||
purge_protection_enabled = true | ||
soft_delete_retention_days = 7 | ||
enable_rbac_authorization = true | ||
|
||
network_acls { | ||
bypass = "AzureServices" | ||
default_action = "Deny" | ||
ip_rules = [local.public_ip] | ||
} | ||
} | ||
|
||
resource "azurerm_key_vault_access_policy" "current_user" { | ||
key_vault_id = azurerm_key_vault.des_vault.id | ||
object_id = coalesce(var.managed_identity_principal_id, data.azurerm_client_config.current.object_id) | ||
tenant_id = data.azurerm_client_config.current.tenant_id | ||
key_permissions = [ | ||
"Get", | ||
"Create", | ||
"Delete", | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
resource "azurerm_key_vault_key" "kms" { | ||
name = "${var.cluster_name}-etcd-encryption" | ||
key_vault_id = azurerm_key_vault.kv_storage_byok.id | ||
key_type = "RSA" | ||
key_size = 2048 | ||
|
||
key_opts = [ | ||
"decrypt", | ||
"encrypt", | ||
"sign", | ||
"unwrapKey", | ||
"verify", | ||
"wrapKey", | ||
] | ||
|
||
depends_on = [azurerm_role_assignment.kv_admin] | ||
} | ||
|
||
resource "azurerm_key_vault_access_policy" "kms" { | ||
key_vault_id = azurerm_key_vault.des_vault.id | ||
object_id = azurerm_user_assigned_identity.test.id | ||
tenant_id = azurerm_user_assigned_identity.test.tenant_id | ||
key_permissions = [ | ||
"Decrypt", | ||
"Encrypt", | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.