-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from turkenh/contrib-to-upbound
Provider Terraform as an Official Provider
- Loading branch information
Showing
36 changed files
with
948 additions
and
632 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
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,24 +1,25 @@ | ||
--- | ||
name: Feature Request | ||
about: Help us make Crossplane more useful | ||
about: Help us make Official Terraform Provider more useful | ||
labels: enhancement | ||
title: "A new auth option" | ||
--- | ||
<!-- | ||
Thank you for helping to improve Crossplane! | ||
Thank you for helping to improve Official Terraform Provider! | ||
Please be sure to search for open issues before raising a new one. We use issues | ||
for bug reports and feature requests. Please find us at https://slack.crossplane.io | ||
for questions, support, and discussion. | ||
for bug reports and feature requests. | ||
--> | ||
|
||
### What problem are you facing? | ||
|
||
<!-- | ||
Please tell us a little about your use case - it's okay if it's hypothetical! | ||
Leading with this context helps frame the feature request so we can ensure we | ||
implement it sensibly. | ||
---> | ||
|
||
### How could Crossplane help solve your problem? | ||
### How could Official Terraform Provider help solve your problem? | ||
<!-- | ||
Let us know how you think Crossplane could help with your use case. | ||
Let us know how you think Official Terraform Provider could help with your use case. | ||
--> |
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,26 @@ | ||
--- | ||
name: New Resource Request | ||
about: Help us know what resource you need is missing. | ||
labels: new-resource | ||
title: "Request for `terraform_instance` resource" | ||
--- | ||
<!-- | ||
Thank you for helping to improve Official Terraform Provider! | ||
Please be sure to search for open issues before raising a new one. We use issues | ||
for bug reports and feature requests. | ||
--> | ||
|
||
### What resource do you need? | ||
|
||
Terraform Resource Name: | ||
<!-- | ||
Please let us know the name of the resource you need. | ||
--> | ||
|
||
|
||
### What is your use case? | ||
<!-- | ||
Help us for prioritization of the resource support by giving more details about | ||
why you need 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Backport | ||
|
||
on: | ||
# NOTE(negz): This is a risky target, but we run this action only when and if | ||
# a PR is closed, then filter down to specifically merged PRs. We also don't | ||
# invoke any scripts, etc from within the repo. I believe the fact that we'll | ||
# be able to review PRs before this runs makes this fairly safe. | ||
# https://securitylab.github.com/research/github-actions-preventing-pwn-requests/ | ||
pull_request_target: | ||
types: [closed] | ||
# See also commands.yml for the /backport triggered variant of this workflow. | ||
|
||
jobs: | ||
# NOTE(negz): I tested many backport GitHub actions before landing on this | ||
# one. Many do not support merge commits, or do not support pull requests with | ||
# more than one commit. This one does. It also handily links backport PRs with | ||
# new PRs, and provides commentary and instructions when it can't backport. | ||
# The main gotchas with this action are that it _only_ supports merge commits, | ||
# and that PRs _must_ be labelled before they're merged to trigger a backport. | ||
open-pr: | ||
runs-on: ubuntu-22.04 | ||
if: github.event.pull_request.merged | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Open Backport PR | ||
uses: zeebe-io/backport-action@v0.0.8 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
github_workspace: ${{ github.workspace }} | ||
version: v0.0.8 |
Oops, something went wrong.