citrix / terraform-provider-citrix

Terraform provider for Citrix
Apache License 2.0
41 stars 5 forks source link

Chnaged machine_name to machine_account #69

Closed bjerrecs closed 1 week ago

bjerrecs commented 1 month ago

This change updates the docs to match what's required by the provider

Before

machine_accounts = [
      {
          machines = [
              {
                  machine_name= "Domain\\MachineName"
              },
              {
                  machine_name= "Domain\\MachineName"
              }
          ]
      }
]

After

machine_accounts = [
      {
          machines = [
              {
                  machine_account = "Domain\\MachineName"
              },
              {
                  machine_account = "Domain\\MachineName"
              }
          ]
      }
]
AlanCitrix commented 1 month ago

Thank you for the PR, we will have this fixed in the next release!

aneeshk-citrix commented 1 week ago

This is now fixed in the release v0.6.1. Closing PR