mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-01-13 00:19:32 -05:00
Fix Azure Terraform for non-CVMs (#251)
This commit is contained in:
parent
4b2dd1317a
commit
282117666e
@ -162,6 +162,7 @@ module "scale_set_control_plane" {
|
|||||||
resource_group = var.resource_group
|
resource_group = var.resource_group
|
||||||
location = var.location
|
location = var.location
|
||||||
instance_type = var.instance_type
|
instance_type = var.instance_type
|
||||||
|
confidential_vm = var.confidential_vm
|
||||||
tags = merge(local.tags, { role = "control-plane" })
|
tags = merge(local.tags, { role = "control-plane" })
|
||||||
image_id = var.image_id
|
image_id = var.image_id
|
||||||
user_assigned_identity = var.user_assigned_identity
|
user_assigned_identity = var.user_assigned_identity
|
||||||
@ -183,6 +184,7 @@ module "scale_set_worker" {
|
|||||||
resource_group = var.resource_group
|
resource_group = var.resource_group
|
||||||
location = var.location
|
location = var.location
|
||||||
instance_type = var.instance_type
|
instance_type = var.instance_type
|
||||||
|
confidential_vm = var.confidential_vm
|
||||||
tags = merge(local.tags, { role = "worker" })
|
tags = merge(local.tags, { role = "worker" })
|
||||||
image_id = var.image_id
|
image_id = var.image_id
|
||||||
user_assigned_identity = var.user_assigned_identity
|
user_assigned_identity = var.user_assigned_identity
|
||||||
|
Loading…
Reference in New Issue
Block a user