Skip to content

Commit

Permalink
Cut Release 'v1.3.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
opslevel-ops committed Oct 15, 2024
1 parent 6106c4a commit 40d5397
Show file tree
Hide file tree
Showing 11 changed files with 27 additions and 23 deletions.
3 changes: 0 additions & 3 deletions .changes/unreleased/Bugfix-20241002-090048.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/unreleased/Bugfix-20241007-102556.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/unreleased/Bugfix-20241015-110344.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/unreleased/Dependency-20241014-015634.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/unreleased/Dependency-20241015-112041.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/unreleased/Feature-20240930-130105.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/unreleased/Feature-20241007-131137.yaml

This file was deleted.

11 changes: 11 additions & 0 deletions .changes/v1.3.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
## [October 15, 2024](https://github.com/OpsLevel/terraform-provider-opslevel/compare/v1.3.0...v1.3.1)
### Bugfix
- fix predicate validation to accept interpolated values on value field
- TF state correctly detects service owner changes from UI
- correct removal of resource from TF state if resource not found in OpsLevel on read, instead of crashing with error
### Feature
- add "send_invite" field to "opslevel_user" to send an invite email even if notifications are disabled for the account
- can override aws regions with "region_override" field on opslevel_aws_integration resource
### Dependency
- Bump opslevel/report-deploy-github-action from 0.10.0 to 1.0.0
- bump opslevel-go version to v2024.10.15
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,17 @@
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and is generated by [Changie](https://github.com/miniscruff/changie).## [September 18, 2024](https://github.com/OpsLevel/terraform-provider-opslevel/compare/v1.2.7...v1.3.0)
and is generated by [Changie](https://github.com/miniscruff/changie).## [October 15, 2024](https://github.com/OpsLevel/terraform-provider-opslevel/compare/v1.3.0...v1.3.1)
### Bugfix
- fix predicate validation to accept interpolated values on value field
- TF state correctly detects service owner changes from UI
- correct removal of resource from TF state if resource not found in OpsLevel on read, instead of crashing with error
### Feature
- add "send_invite" field to "opslevel_user" to send an invite email even if notifications are disabled for the account
- can override aws regions with "region_override" field on opslevel_aws_integration resource
### Dependency
- Bump opslevel/report-deploy-github-action from 0.10.0 to 1.0.0
- bump opslevel-go version to v2024.10.15## [September 18, 2024](https://github.com/OpsLevel/terraform-provider-opslevel/compare/v1.2.7...v1.3.0)
### Bugfix
- no longer delete service tags during updates when other fields are changed
- BREAKING CHANGE - Changed the default value of field `ownership_tag_keys` in `opslevel_integration_azure_resources` to match the default of the GraphQL API (and the other infrastructure integration resource). This may cause the existing integration to revert any manual changes to `ownership_tag_keys` on the next plan/apply.
Expand Down
2 changes: 2 additions & 0 deletions docs/resources/integration_aws.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ resource "opslevel_integration_aws" "dev" {
external_id = random_string.external_id.result
ownership_tag_overrides = true
ownership_tag_keys = ["owner", "team", "group"]
region_override = ["eu-west-1", "us-east-1"]
}
```

Expand All @@ -128,6 +129,7 @@ resource "opslevel_integration_aws" "dev" {

- `ownership_tag_keys` (List of String) Allow tags imported from AWS to override ownership set in OpsLevel directly. Max 5 (default = ["owner"])
- `ownership_tag_overrides` (Boolean) Allow tags imported from AWS to override ownership set in OpsLevel directly.
- `region_override` (List of String) Overrides the AWS region(s) that will be synchronized by this integration.

### Read-Only

Expand Down
4 changes: 3 additions & 1 deletion docs/resources/user.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ resource "opslevel_user" "john" {
name = "John Doe"
email = "[email protected]"
role = "user" # or "admin"
send_invite = true
skip_welcome_email = true
}
```
Expand All @@ -32,7 +33,8 @@ resource "opslevel_user" "john" {
### Optional

- `role` (String) The access role of the user. One of `user`, `admin`, `team_member`, `standards_admin`
- `skip_welcome_email` (Boolean) Don't send an email welcoming the user to OpsLevel. (default: true)
- `send_invite` (Boolean) Send an invite email even if notifications are disabled for the account. **(default: false)**
- `skip_welcome_email` (Boolean) Don't send an email welcoming the user to OpsLevel. **(default: true)**

### Read-Only

Expand Down

0 comments on commit 40d5397

Please sign in to comment.