Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
terraform-aws-elasticache-redis
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Terraform Modules
terraform-aws-elasticache-redis
Commits
856c4614
Unverified
Commit
856c4614
authored
Feb 04, 2021
by
Maxim Mironenko
Committed by
GitHub
Feb 04, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Terraform 0.14 upgrade (#100)
parent
70319bf0
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
56 additions
and
38 deletions
+56
-38
auto-release.yml
.github/auto-release.yml
+0
-8
mergify.yml
.github/mergify.yml
+11
-17
auto-context.yml
.github/workflows/auto-context.yml
+1
-1
auto-readme.yml
.github/workflows/auto-readme.yml
+41
-0
auto-release.yml
.github/workflows/auto-release.yml
+1
-1
validate-codeowners.yml
.github/workflows/validate-codeowners.yml
+0
-7
context.tf
context.tf
+1
-2
context.tf
examples/complete/context.tf
+1
-2
No files found.
.github/auto-release.yml
View file @
856c4614
...
...
@@ -43,11 +43,3 @@ change-template: |
template
:
|
$CHANGES
replacers
:
# Remove irrelevant information from Renovate bot
-
search
:
'
/---\s+^#.*Renovate
configuration(?:.|\n)*?This
PR
has
been
generated
.*/gm'
replace
:
'
'
# Remove Renovate bot banner image
-
search
:
'
/\[!\[[^\]]*Renovate\][^\]]*\](\([^)]*\))?\s*\n+/gm'
replace
:
'
'
.github/mergify.yml
View file @
856c4614
# https://docs.mergify.io/conditions.html
# https://docs.mergify.io/actions.html
pull_request_rules
:
-
name
:
"
approve
automated
PRs
that
have
passed
checks"
conditions
:
-
"
author~=^(cloudpossebot|renovate
\\
[bot
\\
])$"
-
"
check-success~=test/bats"
-
"
check-success~=test/readme"
-
"
check-success~=test/terratest"
-
"
base=master"
-
"
-closed"
-
"
head~=^(auto-update|renovate)/.*"
-
"
check-success=test/bats"
-
"
check-success=test/readme"
-
"
check-success=test/terratest"
-
"
check-success=validate-codeowners"
-
"
author=cloudpossebot"
-
"
head~=auto-update/.*"
actions
:
review
:
type
:
"
APPROVE"
...
...
@@ -19,17 +15,16 @@ pull_request_rules:
-
name
:
"
merge
automated
PRs
when
approved
and
tests
pass"
conditions
:
-
"
author~=^(cloudpossebot|renovate
\\
[bot
\\
])$"
-
"
check-success~=test/bats"
-
"
check-success~=test/readme"
-
"
check-success~=test/terratest"
-
"
base=master"
-
"
-closed"
-
"
head~=^(auto-update|renovate)/.*"
-
"
check-success=test/bats"
-
"
check-success=test/readme"
-
"
check-success=test/terratest"
-
"
check-success=validate-codeowners"
-
"
head~=auto-update/.*"
-
"
#approved-reviews-by>=1"
-
"
#changes-requested-reviews-by=0"
-
"
#commented-reviews-by=0"
-
"
base=master"
-
"
author=cloudpossebot"
actions
:
merge
:
method
:
"
squash"
...
...
@@ -43,7 +38,6 @@ pull_request_rules:
-
name
:
"
ask
to
resolve
conflict"
conditions
:
-
"
conflict"
-
"
-closed"
actions
:
comment
:
message
:
"
This
pull
request
is
now
in
conflict.
Could
you
fix
it
@{{author}}?
🙏"
...
...
.github/workflows/auto-context.yml
View file @
856c4614
...
...
@@ -34,7 +34,7 @@ jobs:
fi
-
name
:
Create Pull Request
if
:
steps.update.outputs.create_pull_request == 'true'
if
:
{{
steps.update.outputs.create_pull_request == 'true'
}}
uses
:
cloudposse/actions/github/create-pull-request@0.22.0
with
:
token
:
${{ secrets.PUBLIC_REPO_ACCESS_TOKEN }}
...
...
.github/workflows/auto-readme.yml
0 → 100644
View file @
856c4614
name
:
"
auto-readme"
on
:
schedule
:
# Update README.md nightly
-
cron
:
'
0
4
*
*
*'
jobs
:
update
:
if
:
github.event_name == 'schedule'
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@v2
-
name
:
Update readme
shell
:
bash
id
:
update
env
:
GITHUB_TOKEN
:
"
${{
secrets.GITHUB_TOKEN
}}"
run
:
|
make init
make readme/build
-
name
:
Create Pull Request
uses
:
cloudposse/actions/github/create-pull-request@0.20.0
with
:
token
:
${{ secrets.PUBLIC_REPO_ACCESS_TOKEN }}
commit-message
:
Update README.md and docs
title
:
Update README.md and docs
body
:
|-
## what
This is an auto-generated PR that updates the README.md and docs
## why
To have most recent changes of README.md and doc from origin templates
branch
:
auto-update/readme
base
:
master
delete-branch
:
true
labels
:
|
auto-update
readme
.github/workflows/auto-release.yml
View file @
856c4614
...
...
@@ -6,7 +6,7 @@ on:
-
master
jobs
:
publish
:
semver
:
runs-on
:
ubuntu-latest
steps
:
# Drafts your next Release notes as Pull Requests are merged into "master"
...
...
.github/workflows/validate-codeowners.yml
View file @
856c4614
...
...
@@ -9,8 +9,6 @@ jobs:
-
name
:
"
Checkout
source
code
at
current
commit"
uses
:
actions/checkout@v2
-
uses
:
mszostok/codeowners-validator@v0.5.0
if
:
github.event.pull_request.head.repo.full_name == github.repository
name
:
"
Full
check
of
CODEOWNERS"
with
:
# For now, remove "files" check to allow CODEOWNERS to specify non-existent
# files so we can use the same CODEOWNERS file for Terraform and non-Terraform repos
...
...
@@ -18,8 +16,3 @@ jobs:
checks
:
"
syntax,owners,duppatterns"
# GitHub access token is required only if the `owners` check is enabled
github_access_token
:
"
${{
secrets.PUBLIC_REPO_ACCESS_TOKEN
}}"
-
uses
:
mszostok/codeowners-validator@v0.5.0
if
:
github.event.pull_request.head.repo.full_name != github.repository
name
:
"
Syntax
check
of
CODEOWNERS"
with
:
checks
:
"
syntax,duppatterns"
context.tf
View file @
856c4614
...
...
@@ -18,10 +18,9 @@
# will be null, and `module.this.delimiter` will be `-` (hyphen).
#
module
"this"
{
source
=
"cloudposse/label/null"
version
=
"0.22.
0
"
// requires Terraform >= 0.12.26
version
=
"0.22.
1
"
// requires Terraform >= 0.12.26
enabled
=
var
.
enabled
namespace
=
var
.
namespace
...
...
examples/complete/context.tf
View file @
856c4614
...
...
@@ -18,10 +18,9 @@
# will be null, and `module.this.delimiter` will be `-` (hyphen).
#
module
"this"
{
source
=
"cloudposse/label/null"
version
=
"0.22.
0
"
// requires Terraform >= 0.12.26
version
=
"0.22.
1
"
// requires Terraform >= 0.12.26
enabled
=
var
.
enabled
namespace
=
var
.
namespace
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment