7 Commits

Author SHA1 Message Date
Eugene Kolnick
42aeb4ade7 [skip ci] Refactor contexts (#82) 2023-03-29 09:34:08 -07:00
Ana Krivokapić
a7dd44730b Remove infraredgirl from CODEOWNERS (#80) 2022-08-19 14:28:14 +02:00
Rho
b08d79317e [skip ci] Remove dep from readme (#79) 2022-08-15 15:14:33 -07:00
Etiene Dalcol
922e6ca0a8 Add gruntwork-io/maintenance-tier-3-orion to CODEOWNERS (#76) 2022-01-26 18:18:01 +00:00
Etiene Dalcol
06fc8b53e6 Add sunset notice to README.md (#77) 2022-01-23 17:59:00 +00:00
Rob Morgan
fe2baced0f Add GitHub PR & Issue Templates (#73) 2021-11-19 16:23:28 +08:00
Marina
dbbdd5bdb3 Update CODEOWNERS (#70) 2021-11-04 13:55:26 +08:00
7 changed files with 112 additions and 16 deletions

View File

@@ -89,13 +89,15 @@ workflows:
jobs:
- precommit:
context:
- Gruntwork GCP
- GCP__automated-tests
- GITHUB__PAT__gruntwork-ci
filters:
tags:
only: /^v.*/
- test:
context:
- Gruntwork GCP
- GCP__automated-tests
- GITHUB__PAT__gruntwork-ci
requires:
- precommit
filters:

33
.github/ISSUE_TEMPLATE/bug_report.md vendored Normal file
View File

@@ -0,0 +1,33 @@
---
name: Bug report
about: Create a bug report to help us improve.
title: ''
labels: bug
assignees: ''
---
<!--
Have any questions? Check out the contributing docs at https://gruntwork.notion.site/Gruntwork-Coding-Methodology-02fdcd6e4b004e818553684760bf691e,
or ask in this issue and a Gruntwork core maintainer will be happy to help :)
-->
**Describe the bug**
A clear and concise description of what the bug is.
**To Reproduce**
Steps to reproduce the behavior including the relevant Terraform/Terragrunt/Packer version number and any code snippets and module inputs you used.
```hcl
// paste code snippets here
```
**Expected behavior**
A clear and concise description of what you expected to happen.
**Nice to have**
- [ ] Terminal output
- [ ] Screenshots
**Additional context**
Add any other context about the problem here.

View File

@@ -0,0 +1,22 @@
---
name: Feature request
about: Submit a feature request for this repo.
title: ''
labels: enhancement
assignees: ''
---
<!--
Have any questions? Check out the contributing docs at https://gruntwork.notion.site/Gruntwork-Coding-Methodology-02fdcd6e4b004e818553684760bf691e,
or ask in this issue and a Gruntwork core maintainer will be happy to help :)
-->
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
**Additional context**
Add any other context or screenshots about the feature request here.

43
.github/pull_request_template.md vendored Normal file
View File

@@ -0,0 +1,43 @@
<!--
Have any questions? Check out the contributing docs at https://gruntwork.notion.site/Gruntwork-Coding-Methodology-02fdcd6e4b004e818553684760bf691e,
or ask in this Pull Request and a Gruntwork core maintainer will be happy to help :)
Note: Remember to add '[WIP]' to the beginning of the title if this PR is still a work-in-progress. Remove it when it is ready for review!
-->
## Description
<!-- Write a brief description of the changes introduced by this PR -->
### Documentation
<!--
If this is a feature PR, then where is it documented?
- If docs exist:
- Update any references, if relevant.
- If no docs exist:
- Create a stub for documentation including bullet points for how to use the feature, code snippets (including from happy path tests), etc.
-->
<!-- Important: Did you make any backward incompatible changes? If yes, then you must write a migration guide! -->
## TODOs
Please ensure all of these TODOs are completed before asking for a review.
- [ ] Ensure the branch is named correctly with the issue number. e.g: `feature/new-vpc-endpoints-955` or `bug/missing-count-param-434`.
- [ ] Update the docs.
- [ ] Keep the changes backward compatible where possible.
- [ ] Run the pre-commit checks successfully.
- [ ] Run the relevant tests successfully.
- [ ] Ensure any 3rd party code adheres with our [license policy](https://www.notion.so/gruntwork/Gruntwork-licenses-and-open-source-usage-policy-f7dece1f780341c7b69c1763f22b1378) or delete this line if its not applicable.
## Related Issues
<!--
Link to related issues, and issues fixed or partially addressed by this PR.
e.g. Fixes #1234
e.g. Addresses #1234
e.g. Related to #1234
-->

View File

@@ -1 +1 @@
* @robmorgan @yorinasub17
* @marinalimeira @robmorgan @ina-stoyanova @gruntwork-io/maintenance-tier-3-orion

View File

@@ -1,3 +1,11 @@
### Sunset notice
We believe there is an opportunity to create a truly outstanding developer experience for deploying to the cloud, however developing this vision requires that we temporarily limit our focus to just one cloud. Gruntwork has hundreds of customers currently using AWS, so we have temporarily suspended our maintenance efforts on this repo. Once we have implemented and validated our vision for the developer experience on the cloud, we look forward to picking this up. In the meantime, you are welcome to use this code in accordance with the open source license, however we will not be responding to GitHub Issues or Pull Requests.
If you wish to be the maintainer for this project, we are open to considering that. Please contact us at support@gruntwork.io.
---
<!--
:type: service
:name: Google Cloud SQL
@@ -12,7 +20,6 @@
# Cloud SQL Modules
[![Maintained by Gruntwork.io](https://img.shields.io/badge/maintained%20by-gruntwork.io-%235849a6.svg)](https://gruntwork.io/?ref=repo_google_cloudsql)
[![GitHub tag (latest SemVer)](https://img.shields.io/github/tag/gruntwork-io/terraform-google-sql.svg?label=latest)](http://github.com/gruntwork-io/terraform-google-sql/releases/latest)
![Terraform Version](https://img.shields.io/badge/tf-%3E%3D1.0.x-blue.svg)

View File

@@ -26,21 +26,10 @@ clean up.
### Prerequisites
- Install the latest version of [Go](https://golang.org/).
- Install [dep](https://github.com/golang/dep) for Go dependency management.
- Install [Terraform](https://www.terraform.io/downloads.html).
- Configure your Google credentials using one of the [options supported by GCP](https://cloud.google.com/docs/authentication/getting-started).
### One-time setup
Download Go dependencies using dep:
```
cd test
dep ensure
```
### Run all the tests
```bash
@@ -56,4 +45,4 @@ To run a specific test called `TestFoo`:
```bash
cd test
go test -v -timeout 60m -run TestFoo
```
```