You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to use variables for deploying an AWS-hosted manual machine catalog with multiple VDAs, and I'm getting the following error when running terraform plan. I'm sure I've just done something wrong or not expected, but would appreciate a bit of help to see if this is something in the provider.
> terraform plan
╷
│ Error: Value Conversion Error
│
│ with citrix_machine_catalog.aws-catalog,
│ on machine_catalogs.tf line 1, in resource "citrix_machine_catalog" "aws-catalog":
│ 1: resource "citrix_machine_catalog" "aws-catalog" {
│
│ An unexpected error was encountered trying to build a value. This is always an error in the provider. Please report the
│ following to the provider developer:
│
│ Received unknown value, however the target type cannot handle unknown values. Use the corresponding `types` package type or a
│ custom type that handles unknown values.
│
│ Path: machine_accounts[0].machines
│ Target Type: []machine_catalog.MachineCatalogMachineModel
│ Suggested Type: basetypes.ListValue
The output that this is an error in the provider made me decide to open this bug, despite thinking I've probably built the variables incorrectly. Is there a straightforward way to use the MachineCatalogMachineModel type in this fashion with variables, or some other method to achieve this goal?
At the current point, we cannot use variables for machine_accounts.machines. Please input the list directly for now. We will let you know when we add support to use the list variable.
I'm trying to use variables for deploying an AWS-hosted manual machine catalog with multiple VDAs, and I'm getting the following error when running
terraform plan
. I'm sure I've just done something wrong or not expected, but would appreciate a bit of help to see if this is something in the provider.The output that this is an error in the provider made me decide to open this bug, despite thinking I've probably built the variables incorrectly. Is there a straightforward way to use the MachineCatalogMachineModel type in this fashion with variables, or some other method to achieve this goal?
variables.tf:
terraform.tfvars:
And the relevant code in the machine catalog resource:
Thank you!
The text was updated successfully, but these errors were encountered: