betr-io / terraform-provider-mssql

Terraform provider for Microsoft SQL Server
https://registry.terraform.io/providers/betr-io/mssql/latest
MIT License
35 stars 28 forks source link

Fix role reorder update issue #53

Closed paulbrittain closed 1 year ago

paulbrittain commented 1 year ago

Hello, I hope this PR finds you well.

The objective of this PR is to fix issue #46

Before: The change in order of roles triggers an update. After: The change in order of roles no longer triggers an update.

How: Using a Terraform (terraform-plugin-sdk) TypeSet (unordered) type instead of TypeList (ordered), then using the TypeSet function List() to convert the set back to list.