-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: adjust to new runrs, fix CI (#5)
* fix: run go generate ./.. * remove: example data source and function * remove: data source example * fix: make ID string and impl tests * fix: tests * fix: the world, again * fix: tests * fix: CODEOWNERS * fix: run go generate * fix: run runrs service alongside provider * fix: workflow format
- Loading branch information
1 parent
cb8ebbb
commit 35505d7
Showing
19 changed files
with
262 additions
and
434 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1 +1 @@ | ||
* @hashicorp/terraform-devex | ||
* @bmc-labs/peripheral |
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 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,29 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "peripheral_gitlab_runner Resource - peripheral" | ||
subcategory: "" | ||
description: |- | ||
GitLabRunner resource | ||
--- | ||
|
||
# peripheral_gitlab_runner (Resource) | ||
|
||
GitLabRunner resource | ||
|
||
|
||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `id` (String) GitLabRunner ID as provided by GitLab | ||
- `image` (String) Docker image for GitLabRunner | ||
- `token` (String) Token for GitLabRunner registration | ||
- `url` (String) URL of GitLab instance for GitLabRunner | ||
|
||
### Optional | ||
|
||
- `description` (String) Description of GitLabRunner | ||
- `run_untagged` (Boolean) Allow untagged jobs | ||
- `tag_list` (String) Comma-separated list of tags for GitLabRunner |
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 |
---|---|---|
@@ -1,3 +1,12 @@ | ||
terraform { | ||
required_providers { | ||
peripheral = { | ||
source = "peripheral-cloud/peripheral" | ||
version = "0.1.0" | ||
} | ||
} | ||
} | ||
|
||
provider "peripheral" { | ||
# example configuration here | ||
} |
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.