Skip to content

Releases: PrefectHQ/terraform-provider-prefect

v2.2.3

20 Sep 21:38
f1ab693
Compare
Choose a tag to compare

What's Changed

Dependency Updates

  • chore(deps): bump github.com/hashicorp/terraform-plugin-testing from 1.9.0 to 1.10.0 by @dependabot in #252
  • chore(deps): bump github.com/hashicorp/terraform-plugin-framework from 1.10.0 to 1.11.0 by @dependabot in #253

Documentation

And more...

Full Changelog: v2.2.2...v2.2.3

v2.2.2

27 Aug 21:19
20413da
Compare
Choose a tag to compare

What's Changed

Exciting New Features 🎉

New Contributors

Full Changelog: v2.2.1...v2.2.2

v2.2.1

23 Aug 16:32
0a82c91
Compare
Choose a tag to compare

What's Changed

Fixes

  • fix(work pools): fix work pool base job template "inconsistent values" by @mitchnielsen in #249
  • fix(blocks): retain data field from config on Update by @mitchnielsen in #248

Full Changelog: v2.2.0...v2.2.1

v2.2.0

22 Aug 19:33
7d75c2f
Compare
Choose a tag to compare

What's Changed

Exciting New Features 🎉

Documentation

  • chore(docs): add comment about prefect CLI needing to be on 3.0.0rc1 or later by @parkedwards in #243

Full Changelog: v2.1.0...v2.2.0

v2.1.0

19 Jul 18:31
01c2b9a
Compare
Choose a tag to compare

What's Changed

Exciting New Features 🎉

Dependency Updates

  • chore(deps): bump github.com/hashicorp/terraform-plugin-framework from 1.4.2 to 1.10.0 by @dependabot in #229
  • chore(deps): bump github.com/hashicorp/terraform-plugin-testing from 1.7.0 to 1.9.0 by @dependabot in #230

Full Changelog: v2.0.1...v2.1.0

v2.0.1

12 Jul 18:11
37502a6
Compare
Choose a tag to compare

What's Changed

Exciting New Features 🎉

Dependency Updates

  • chore(deps): bump github.com/hashicorp/terraform-plugin-docs from 0.19.3 to 0.19.4 by @dependabot in #225
  • chore(deps): bump goreleaser/goreleaser-action from 5 to 6 by @dependabot in #224

And more...

  • chore(security): set all pull_request_target workflows to require approval by @parkedwards in #222

New Contributors

Full Changelog: v2.0.0...v2.0.1

v2.0.0 - Blocks Support

19 Jun 04:33
5ff5236
Compare
Choose a tag to compare

We're thrilled to announce that Prefect Blocks are now supported in the Terraform Provider!

resource "prefect_block" "my_secret" {
  name      = "my-secret"
  type_slug = "secret"
  data = jsonencode({
    "value" = "foobar"
  })
  workspace_id = data.prefect_workspace.my_workspace.id
}

# Grant all Actors/Teams the appropriate Manage or View access to the Block
resource "prefect_block_access" "custom_access" {
  block_id         = prefect_block.my_secret.id
  manage_actor_ids = [prefect_service_account.bot.actor_id]
  view_actor_ids   = [data.prefect_account_member.user.actor_id]
  manage_team_ids  = [data.prefect_team.eng.id]
  workspace_id     = data.prefect_workspace.my_workspace.id
}

What's Changed

Exciting New Features 🎉

Fixes

  • fix(variables): allow workspaceID override in import arguments by @parkedwards in #179
  • fix(blocks): always replace Block data on update by @parkedwards in #217

Dependency Updates

  • chore(deps): bump golangci/golangci-lint-action from 4 to 5 by @dependabot in #167
  • chore(deps): bump github.com/hashicorp/terraform-plugin-docs from 0.16.0 to 0.19.2 by @dependabot in #164
  • chore(deps): bump golangci/golangci-lint-action from 5 to 6 by @dependabot in #191
  • chore(deps): bump github.com/hashicorp/terraform-plugin-docs from 0.19.2 to 0.19.3 by @dependabot in #189

Documentation

New Contributors

Full Changelog: v0.1.4...v2.0.0

v2.0.0-alpha.1

11 Jun 22:52
0258c8e
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.1.4...v2.0.0-alpha.1

v0.1.4

04 May 00:22
f55b609
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.1.3...v0.1.4

v0.1.3

18 Apr 23:05
056df6a
Compare
Choose a tag to compare

What's Changed

  • minor: typo in workspace resource docs by @parkedwards in #156
  • fix(tests): use a compliant handle name by @parkedwards in #159
  • minor: fix docs around authenticating provider with environment variables by @youcandanch in #158
  • chore(deps): bump golang.org/x/crypto from 0.14.0 to 0.17.0 by @dependabot in #130
  • chore(deps): bump actions/setup-go from 4 to 5 by @dependabot in #133
  • chore(deps): bump github.com/cloudflare/circl from 1.3.3 to 1.3.7 by @dependabot in #138
  • chore(deps): bump github.com/hashicorp/terraform-plugin-go from 0.19.0 to 0.22.1 by @dependabot in #160
  • chore(deps): bump github.com/hashicorp/terraform-plugin-testing from 1.5.1 to 1.7.0 by @dependabot in #155
  • chore(deps): bump golangci/golangci-lint-action from 3 to 4 by @dependabot in #145
  • chore(deps): go mod tidy by @parkedwards in #161

New Contributors

Full Changelog: v0.1.2...v0.1.3