-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
357494c
commit a055327
Showing
50 changed files
with
436 additions
and
281 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
## [September 15, 2023](https://github.com/OpsLevel/terraform-provider-opslevel/compare/v0.8.8...v0.8.9) | ||
### Feature | ||
- add datasource for scorecards | ||
- add webhook action data source | ||
- add extendedTeamAccess field to trigger definitions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "opslevel_scorecard Data Source - terraform-provider-opslevel" | ||
subcategory: "" | ||
description: |- | ||
--- | ||
|
||
# opslevel_scorecard (Data Source) | ||
|
||
|
||
|
||
|
||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `identifier` (String) The id or alias of the scorecard to find. | ||
|
||
### Read-Only | ||
|
||
- `aliases` (List of String) The scorecard's aliases. | ||
- `description` (String) The scorecard's description. | ||
- `filter_id` (String) The scorecard's filter. | ||
- `id` (String) The ID of this resource. | ||
- `name` (String) The scorecard's name. | ||
- `owner_id` (String) The scorecard's owner. | ||
- `passing_checks` (Number) The scorecard's number of checks that are passing. | ||
- `service_count` (Number) The scorecard's number of services matched. | ||
- `total_checks` (Number) The scorecard's total number of checks. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "opslevel_scorecards Data Source - terraform-provider-opslevel" | ||
subcategory: "" | ||
description: |- | ||
--- | ||
|
||
# opslevel_scorecards (Data Source) | ||
|
||
|
||
|
||
|
||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Read-Only | ||
|
||
- `aliases` (List of List of String) | ||
- `descriptions` (List of String) | ||
- `filter_ids` (List of String) | ||
- `id` (String) The ID of this resource. | ||
- `ids` (List of String) | ||
- `names` (List of String) | ||
- `owner_ids` (List of String) | ||
- `passing_checks` (List of Number) | ||
- `service_counts` (List of Number) | ||
- `total_checks` (List of Number) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,8 +20,8 @@ provider "opslevel" { | |
} | ||
resource "opslevel_team" "foo" { | ||
name = "foo" | ||
manager_email = "[email protected]" | ||
name = "foo" | ||
manager_email = "[email protected]" | ||
responsibilities = "Responsible for foo frontend and backend" | ||
} | ||
|
@@ -33,8 +33,8 @@ resource "opslevel_service" "foo-frontend" { | |
language = "ruby" | ||
lifecycle_alias = "beta" | ||
tier_alias = "tier_3" | ||
owner_alias = opslevel_team.foo.alias | ||
tier_alias = "tier_3" | ||
owner_alias = opslevel_team.foo.alias | ||
tags = [ | ||
"environment:production", | ||
|
@@ -58,21 +58,21 @@ data "opslevel_rubric_level" "bronze" { | |
resource "opslevel_filter" "filter" { | ||
name = "foo" | ||
predicate { | ||
key = "tier_index" | ||
type = "equals" | ||
key = "tier_index" | ||
type = "equals" | ||
value = "tier_3" | ||
} | ||
connective = "and" | ||
} | ||
resource "opslevel_check_repository_integrated" "foo" { | ||
name = "foo" | ||
enabled = true | ||
name = "foo" | ||
enabled = true | ||
category = data.opslevel_rubric_category.security.id | ||
level = data.opslevel_rubric_level.bronze.id | ||
owner = opslevel_team.foo.id | ||
filter = opslevel_filter.filter.id | ||
notes = "Optional additional info on why this check is run or how to fix it" | ||
level = data.opslevel_rubric_level.bronze.id | ||
owner = opslevel_team.foo.id | ||
filter = opslevel_filter.filter.id | ||
notes = "Optional additional info on why this check is run or how to fix it" | ||
} | ||
``` | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.