-
Notifications
You must be signed in to change notification settings - Fork 9.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into aws-cloudwatch-event-bus
- Loading branch information
Showing
8,489 changed files
with
572,484 additions
and
2,475,609 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Needed for testing our workflows | ||
-P ubuntu-latest=nektos/act-environments-ubuntu:18.04 |
Validating CODEOWNERS rules …
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,2 +1,36 @@ | ||
# Default owner for all pull requests | ||
* @terraform-providers/aws-provider | ||
|
||
# Service specific owners | ||
/aws/*apigatewayv2* @ewbankkit @terraform-providers/aws-provider | ||
/website/**/apigatewayv2* @ewbankkit @terraform-providers/aws-provider | ||
|
||
/aws/*appmesh* @ewbankkit @terraform-providers/aws-provider | ||
/website/**/appmesh* @ewbankkit @terraform-providers/aws-provider | ||
|
||
/aws/*backup* @ewbankkit @terraform-providers/aws-provider | ||
/website/**/backup* @ewbankkit @terraform-providers/aws-provider | ||
|
||
/aws/*_aws_codeartifact_*.go @DrFaust92 @terraform-providers/aws-provider | ||
/website/**/codeartifact* @DrFaust92 @terraform-providers/aws-provider | ||
|
||
/aws/*_aws_fsx_*.go @DrFaust92 @terraform-providers/aws-provider | ||
/website/**/fsx* @DrFaust92 @terraform-providers/aws-provider | ||
|
||
/aws/*globalaccelerator* @ewbankkit @terraform-providers/aws-provider | ||
/website/**/globalaccelerator* @ewbankkit @terraform-providers/aws-provider | ||
|
||
/aws/*_aws_glue_*.go @DrFaust92 @terraform-providers/aws-provider | ||
/website/**/glue* @DrFaust92 @terraform-providers/aws-provider | ||
|
||
/aws/*route53_resolver* @ewbankkit @terraform-providers/aws-provider | ||
/website/**/route53_resolver* @ewbankkit @terraform-providers/aws-provider | ||
|
||
/aws/*_aws_storagegateway_*.go @DrFaust92 @terraform-providers/aws-provider | ||
/website/**/storagegateway* @DrFaust92 @terraform-providers/aws-provider | ||
|
||
/aws/*_aws_sagemaker_*.go @DrFaust92 @terraform-providers/aws-provider | ||
/website/**/sagemaker* @DrFaust92 @terraform-providers/aws-provider | ||
|
||
/aws/*_aws_workspaces_*.go @Tensho @terraform-providers/aws-provider | ||
/website/**/workspaces* @Tensho @terraform-providers/aws-provider |
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
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
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,6 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" |
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,4 @@ | ||
needs-triage: | ||
- '**' | ||
- '.*' | ||
- '.*/**' |
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,20 @@ | ||
# GitHub Workflows | ||
|
||
## Using the `setup-terraform` action | ||
|
||
By default, the [`setup-terraform` action](https://github.com/hashicorp/setup-terraform) adds a wrapper for the `terraform` command that allows passing results to subsequent steps. This will prevent using the output of a `terraform` command as the input to another command in the same step. | ||
|
||
The wrapper can be turned off by using | ||
|
||
```yaml | ||
steps: | ||
- uses: hashicorp/setup-terraform@v1 | ||
with: | ||
terraform_wrapper: false | ||
``` | ||
## Testing workflows locally | ||
The tool [`act`](https://github.com/nektos/act) can be used to test GitHub workflows locally. The default container [intentionally does not have feature parity](https://github.com/nektos/act#default-runners-are-intentionally-incomplete) with the containers used in GitHub due to the size of a full container. | ||
|
||
The file `./actrc` configures `act` to use a fully-featured container. |
Oops, something went wrong.