diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 6535199..a072ac1 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -11,7 +11,7 @@ repos: - id: check-symlinks - repo: https://github.com/antonbabenko/pre-commit-terraform - rev: v1.92.1 + rev: v1.95.0 hooks: - id: terraform_fmt @@ -29,7 +29,7 @@ repos: - id: terraform_docs - repo: https://github.com/bridgecrewio/checkov.git - rev: 3.2.219 + rev: 3.2.254 hooks: - id: checkov verbose: true diff --git a/README.md b/README.md index bc2089f..f22d729 100644 --- a/README.md +++ b/README.md @@ -67,12 +67,12 @@ terraform test > A child module automatically inherits default (un-aliased) provider configurations from its parent. The provider versions below are informational only and do **not** need to align with the provider configurations from its parent. - + ### Providers | Name | Version | |------|---------| -| google | 5.40.0 | +| google | 6.2.0 | ### Resources @@ -98,6 +98,5 @@ terraform test | Name | Description | |------|-------------| | name | The network name | -| project | The ID of the project in which the resource belongs | | self\_link | The URI of the created resource | - + diff --git a/outputs.tf b/outputs.tf index 8f7d355..6d95149 100644 --- a/outputs.tf +++ b/outputs.tf @@ -6,11 +6,6 @@ output "name" { value = google_compute_network.this.name } -output "project" { - description = "The ID of the project in which the resource belongs" - value = var.project -} - output "self_link" { description = "The URI of the created resource" value = google_compute_network.this.self_link diff --git a/variables.tf b/variables.tf index 3586461..d184bad 100644 --- a/variables.tf +++ b/variables.tf @@ -1,3 +1,6 @@ +# Input Variables +# https://www.terraform.io/language/values/variables + variable "name" { description = "Name of the network to create" type = string