v3.0.0
·
31 commits
to main
since this release
3.0.0 (2025-05-19)
Bug Fixes
- added a fix to prevent resources getting destroyed when a trusted profile name is being renamed
trusted_profile_policiesnow has a required attribute calledunique_identifierwhich must have a unique value per policy. It is only used by terraform for building map objects, it is not use for any actual resource naming. Changing this value will cause resources to be recreated.trusted_profile_claim_rulesnow has a required attribute calledunique_identifierwhich must have a unique value per claim rule. It is only used by terraform for building map objects, it is not use for any actual resource naming. Changing this value will cause resources to be recreated.trusted_profile_linksnow has a required attribute calledunique_identifier` which must have a unique value per profile link. It is only used by terraform for building map objects, it is not use for any actual resource naming. Changing this value will cause resources to be recreated.
BREAKING CHANGES
- If upgrading from a previous version, you can prevent resources from being recreated if you use the correct value for the new
unique_identifierattribute. For example, if you used the following value for trusted profile name:trusted_profile_name = "my-profile"you should use the following naming conventions:
Trusted profile policies
trusted_profile_policies = [
{
unique_identifier = "my-profile-0" # use the format of "<trusted profile name>-0" for first item in the list
...
...
},
{
unique_identifier = "my-profile-1" # use the format of "<trusted profile name>-1" for second item in the list, and so on
...
...
}
]
Trusted profile policies
trusted_profile_claim_rules = [
{
unique_identifier = "my-profile-0" # use the format of "<trusted profile name>-0" for first item in the list
...
...
},
{
unique_identifier = "my-profile-1" # use the format of "<trusted profile name>-1" for second item in the list, and so on
...
...
}
]
Trusted profile links
trusted_profile_links = [
{
unique_identifier = "my-profile-0" # use the format of "<trusted profile name>-0" for first item in the list
...
...
},
{
unique_identifier = "my-profile-1" # use the format of "<trusted profile name>-1" for second item in the list, and so on
...
...
}
]