terraform-provider-citrixadc
terraform-provider-citrixadc copied to clipboard
Issue: multiple resource blocks don't merge for citrixadc_nsparam
I have two resource blocks for "citrixadc_nsparam" in my resource files. The first sets the timezone and the secodn cookieversion. The two produce an error rather than merging.
This works fine: resource "citrixadc_nsparam" "tf_nsparam_single_block" { cookieversion = "1" timezone = "coordinateduniversaltime" }
This fails: resource "citrixadc_nsparam" "tf_nsparam_time" { timezone = "coordinateduniversaltime" }
resource "citrixadc_nsparam" "tf_nsparam_cookie" { cookieversion = "1" }
Here is the error produced on failure: │ Error: [ERROR] nitro-go: Failed to update resource of type nsparam, err=failed: 400 Bad Request ({ "errorcode": 1105, "message": "Ambiguous argument value []", "severity": "ERROR" }) │ │ with citrixadc_nsparam.tf_nsparam_time, │ on resources.tf line 62, in resource "citrixadc_nsparam" "tf_nsparam_time": │ 62: resource "citrixadc_nsparam" "tf_nsparam_time" { │