Skip to content

Commit

Permalink
update terraform-gcp-vpc with 0.1.7 terraform-gcp-project
Browse files Browse the repository at this point in the history
  • Loading branch information
jashlu committed Jan 7, 2025
1 parent 02fad86 commit a06f3ea
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/terraform-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Setup Terraform
uses: hashicorp/setup-terraform@v3
with:
terraform_version: 1.9.2 # Get the latest from: https://releases.hashicorp.com/terraform/
terraform_version: 1.10.3 # Get the latest from: https://releases.hashicorp.com/terraform/
- name: Run terraform tests
run: |
terraform init
Expand Down
1 change: 1 addition & 0 deletions .terraform-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1.10.3
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
terraform 1.9.2
terraform 1.10.3
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ code by adding a `module` configuration and setting its `source` parameter to UR

| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.9.0 |
| <a name="requirement_google"></a> [google](#requirement\_google) | 5.38.0 |
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.10.0 |
| <a name="requirement_google"></a> [google](#requirement\_google) | 6.15.0 |

## Providers

Expand All @@ -38,7 +38,7 @@ No providers.

| Name | Source | Version |
|------|--------|---------|
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-google-modules/network/google | 9.1.0 |
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-google-modules/network/google | 10.0.0 |

## Resources

Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Create a simple VPC, Subnets and Secondary Ranges
module "vpc" {
source = "terraform-google-modules/network/google"
version = "9.1.0"
version = "10.0.0"

project_id = var.project_id
network_name = var.network_name
Expand Down
2 changes: 1 addition & 1 deletion tests/simple-vpc/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ locals {
}

module "simple-project" {
source = "git::https://github.com/BrownUniversity/terraform-gcp-project.git?ref=v0.1.6"
source = "git::https://github.com/BrownUniversity/terraform-gcp-project.git?ref=v0.1.7"
project_name = "inspec-vpc"
folder_id = var.folder_id
billing_account = var.billing_account
Expand Down
2 changes: 1 addition & 1 deletion tests/simple-vpc/versions.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
terraform {
required_version = ">= 1.9.2"
required_version = ">= 1.10.3"
}
4 changes: 2 additions & 2 deletions versions.tf
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
terraform {
required_version = ">= 1.9.0"
required_version = ">= 1.10.0"

required_providers {
google = {
source = "hashicorp/google"
version = "5.38.0"
version = "6.15.0"
}
}
}

0 comments on commit a06f3ea

Please sign in to comment.