Skip to content

Releases: getmoss/terraform-provider-metabase

v2.0.2

07 Jun 07:40
5a76857
Compare
Choose a tag to compare

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

04 Mar 08:24
c6d9f48
Compare
Choose a tag to compare
Fix bug while reading memberships (#18)

v2.0.0

17 Feb 11:19
a5d130f
Compare
Choose a tag to compare

⚠️ Breaking changes

These changes will make importing existing resources easier.

  1. Use group name as the id instead of the auto-generated numerical group-id.
  2. Use user email as the id instead of the auto-generated numerical user-id.

Other changes

  1. 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.
  2. Bump Github action versions.

v1.0.0

08 Feb 14:48
dc688fc
Compare
Choose a tag to compare
Update docs