Releases: getmoss/terraform-provider-metabase
Releases · getmoss/terraform-provider-metabase
v2.0.4
v2.0.3
What's Changed
- ISO-197: Add semgrep workflow by @maksimkhazov-moss in #107
- PLAT-3001 | Use central renovate config by @GitKaran in #109
- [DPLATFORM-291] fix the updateUser endpoint by @robomill in #110
- [DPLATFORM-291] fix releaser by @robomill in #111
- [DPLATFORM-291] fix releaser by @robomill in #112
New Contributors
- @maksimkhazov-moss made their first contribution in #107
- @GitKaran made their first contribution in #109
Full Changelog: v2.0.2...v2.0.3
v2.0.2
Extend the support for collections with extra attributes like the parent_id and permissions access.
Example:
resource "metabase_collection" "collection_name" {
name = "Collection Name"
color = "#509EE3"
default_access = "none"
permissions = tomap({
metabase_permission_group.group_name_one.group_id = "write",
metabase_permission_group.group_name_two.group_id = "read",
metabase_permission_group.group_name_three.group_id = "read",
})
}
v2.0.1
Fix bug while reading memberships (#18)
v2.0.0
⚠️ Breaking changes
These changes will make importing existing resources easier.
- Use group
name
as theid
instead of the auto-generated numericalgroup-id
. - Use user
email
as theid
instead of the auto-generated numericaluser-id
.
Other changes
- Cache users & groups during a run to prevent fetching them again over the network. This will help in searching by the new ids without further network calls.
- Bump Github action versions.
v1.0.0
Update docs