Skip to content

Releases: opalsecurity/terraform-provider-opal

v1.0.8

01 Sep 18:56
18fd5c1
Compare
Choose a tag to compare

What's Changed

  • Make token argument optional (#26)
  • Add resource creation support for GCP, Salesforce, and Pagerduty (#28)
  • Add data source for resources and groups (#27)
  • Allow using owners with / in their name (#31)
  • Read remote info into terraform (#30)

Full Changelog: v1.0.6...v1.0.8

v1.0.6

11 Aug 21:39
4c51ad9
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.0.5...v1.0.6

v1.0.5

07 Aug 12:56
4f5abdb
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.0.4...v1.0.5

v1.0.4

31 May 01:01
7d17873
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.0.3...v1.0.4

v1.0.3

28 Feb 03:11
6fe8548
Compare
Choose a tag to compare

NEW FEATURES:

  • adds creation support for Gitlab and Teleport

v1.0.2

22 Feb 05:38
1e60457
Compare
Choose a tag to compare

BUG FIXES:

  • adds a boolean flag to turn management of group <-> resource relationships off by default to avoid accidental access changes

NEW FEATURES:

  • adds opal_owner data source

v1.0.1

09 Feb 18:16
Compare
Choose a tag to compare

BUG FIXES:

  • prevents resource / groups created without description to have an immediate diff from default description generation

v1.0.0

06 Feb 20:29
3ce381e
Compare
Choose a tag to compare

v1.0.0

BREAKING CHANGES:

  • the require_manager_approval attribute was removed in favor of reviewer_stage
  • the reviewer attribute was removed in favor of reviewer_stage

NEW FEATURES:

  • adds support for multi-stage approvals
  • adds support for on_call_schedules in group resources. Example:
resource "opal_on_call_schedule" "security_oncall_rotation" {
  third_party_provider = "PAGER_DUTY"
  remote_id = "PNXHVAA"
}

# Example group usage
resource "opal_group" "security" {
  // ...

  on_call_schedule {
    id = opal_on_call_schedule.security_oncall_rotation.id
  }

v0.0.16

01 Feb 19:50
e12cb79
Compare
Choose a tag to compare

Fix issue around boolean values being ignored during creation if the value is set to False

v0.0.15

23 Jan 21:04
29b80f7
Compare
Choose a tag to compare

What's Changed

  • [OPAL-5273] add missing require_mfa_*, recommended_duration and is_requestable by @giulio-opal in #9

Full Changelog: v0.0.14...v0.0.15