Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Terraform関連全般バージョンアップ #27

Merged
merged 1 commit into from
Jul 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/setup/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ runs:
# v3.0.0 ref. https://github.com/hashicorp/setup-terraform/releases/tag/v3.0.0
uses: hashicorp/setup-terraform@a1502cd9e758c50496cc9ac5308c4843bcd56d36
with:
terraform_version: "1.8.4"
terraform_version: "1.9.1"

- name: auth for Google Cloud
if: ${{ inputs.auth_gcloud == 'true' }}
Expand Down
2 changes: 0 additions & 2 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
name-template: "v$RESOLVED_VERSION"
tag-template: "v$RESOLVED_VERSION"
change-template: "- $TITLE (#$NUMBER) @$AUTHOR"
change-title-escapes: '\<*_&'
exclude-labels:
- "skip-changelog"
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,15 @@ jobs:
runs-on: ubuntu-22.04
permissions:
contents: write
pull-requests: write
steps:
- name: checkout project
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11

# v6.0.0 ref. https://github.com/release-drafter/release-drafter/releases/tag/v6.0.0
- name: generate release note and create version tag
- name: generate a release note and a version tag
uses: release-drafter/release-drafter@3f0f87098bd6b5c5b9a36d49c41d998ea58f9348
with:
tag: v${{ inputs.release_version }}
version: v${{ inputs.release_version }}
publish: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
56 changes: 28 additions & 28 deletions terraform/environments/test/tier1/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

56 changes: 28 additions & 28 deletions terraform/environments/test/tier2/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions terraform/globals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = "5.31.1"
version = "5.36.0"
}
google-beta = {
source = "hashicorp/google-beta"
version = "5.31.1"
version = "5.36.0"
}
random = {
source = "hashicorp/random"
version = "3.6.2"
}
}
required_version = "1.8.4"
required_version = "1.9.1"
}

provider "google" {
Expand Down
2 changes: 1 addition & 1 deletion terraform/modules/db/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# - メンテナンス時間は火曜日 8:00—9:00(JST)
module "sql_db" {
source = "GoogleCloudPlatform/sql-db/google//modules/mysql"
version = "20.1.0"
version = "20.2.0"
project_id = local.project_id
region = var.region
zone = var.zone
Expand Down