Skip to content

Commit

Permalink
fixed ci/cd example.
Browse files Browse the repository at this point in the history
fixed warning.
  • Loading branch information
yoshiakimiyazaki committed Jun 22, 2021
1 parent 7c05423 commit 27b6ac1
Show file tree
Hide file tree
Showing 8 changed files with 53 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# https://help.github.com/ja/actions/reference/workflow-syntax-for-github-actions
name: deploy-workflow-dispatch-base-dev
name: cd-workflow-dispatch-base-dev
on:
workflow_dispatch:
jobs:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# https://help.github.com/ja/actions/reference/workflow-syntax-for-github-actions
name: deploy-workflow-dispatch-monitor-dev
name: cd-workflow-dispatch-monitor-dev
on:
workflow_dispatch:
jobs:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# https://help.github.com/ja/actions/reference/workflow-syntax-for-github-actions
name: integration-pr-dev
name: ci-pullrequst-dev
on:
pull_request:
branches:
Expand All @@ -9,6 +9,7 @@ jobs:
integration:
env:
ENVIRONMENT: dev
TERRAFORM_VERSION: 0.14.7
runs-on: ubuntu-latest
steps:
- name: "code: check out code"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/example/ci-push-dev.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# https://help.github.com/ja/actions/reference/workflow-syntax-for-github-actions
name: integration-push-dev
name: ci-push-dev
on:
push:
branches:
Expand Down
12 changes: 12 additions & 0 deletions modules/aws/recipes/lambda/create/provider.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#--------------------------------------------------------------
# Terraform Provider
#--------------------------------------------------------------
terraform {
required_version = ">=0.14"
required_providers {
aws = {
source = "hashicorp/aws"
version = ">=3.29.1"
}
}
}
12 changes: 12 additions & 0 deletions modules/aws/recipes/lambda/permission/provider.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#--------------------------------------------------------------
# Terraform Provider
#--------------------------------------------------------------
terraform {
required_version = ">=0.14"
required_providers {
aws = {
source = "hashicorp/aws"
version = ">=3.29.1"
}
}
}
12 changes: 12 additions & 0 deletions modules/aws/recipes/metric/cloudfront/provider.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#--------------------------------------------------------------
# Terraform Provider
#--------------------------------------------------------------
terraform {
required_version = ">=0.14"
required_providers {
aws = {
source = "hashicorp/aws"
version = ">=3.29.1"
}
}
}
12 changes: 12 additions & 0 deletions modules/aws/recipes/sns/subscription/provider.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#--------------------------------------------------------------
# Terraform Provider
#--------------------------------------------------------------
terraform {
required_version = ">=0.14"
required_providers {
aws = {
source = "hashicorp/aws"
version = ">=3.29.1"
}
}
}

0 comments on commit 27b6ac1

Please sign in to comment.