Skip to content

Commit

Permalink
fix: fixes for lint (#204)
Browse files Browse the repository at this point in the history
  • Loading branch information
apeabody authored Aug 10, 2024
1 parent 901998d commit 7980e05
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 6 deletions.
2 changes: 1 addition & 1 deletion 1-bootstrap/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ If you receive any errors or made any changes to the Terraform config or `terraf
| artifacts\_bucket | Bucket for storing TF plans |
| logs\_bucket | Bucket for storing TF logs |
| project\_id | Project ID |
| source\_repo\_urls | n/a |
| source\_repo\_urls | Source repository URLs |
| state\_bucket | Bucket for storing TF state |

<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
3 changes: 2 additions & 1 deletion 1-bootstrap/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,6 @@ output "logs_bucket" {
}

output "source_repo_urls" {
value = { for repo_id, repo in google_sourcerepo_repository.gcp_repo : repo_id => "https://source.developers.google.com/p/${var.project_id}/r/${repo.name}" }
description = "Source repository URLs"
value = { for repo_id, repo in google_sourcerepo_repository.gcp_repo : repo_id => "https://source.developers.google.com/p/${var.project_id}/r/${repo.name}" }
}
6 changes: 4 additions & 2 deletions 2-multitenant/modules/env_baseline/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,12 @@ terraform {

required_providers {
google = {
source = "hashicorp/google"
source = "hashicorp/google"
version = ">= 5, < 6"
}
google-beta = {
source = "hashicorp/google-beta"
source = "hashicorp/google-beta"
version = ">= 5, < 6"
}
}

Expand Down
6 changes: 4 additions & 2 deletions 3-appfactory/modules/app-group-baseline/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,12 @@ terraform {

required_providers {
google = {
source = "hashicorp/google"
source = "hashicorp/google"
version = ">= 5, < 6"
}
google-beta = {
source = "hashicorp/google-beta"
source = "hashicorp/google-beta"
version = ">= 5, < 6"
}
}

Expand Down
15 changes: 15 additions & 0 deletions 4-fleetscope/modules/env_baseline/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,21 @@
terraform {
required_version = ">= 0.13"

required_providers {
google = {
source = "hashicorp/google"
version = ">= 5, < 6"
}
google-beta = {
source = "hashicorp/google-beta"
version = ">= 5, < 6"
}
random = {
source = "hashicorp/random"
version = ">= 3"
}
}

provider_meta "google" {
module_name = "blueprints/terraform/terraform-google-enterprise-application:environments/v0.1.0"
}
Expand Down

0 comments on commit 7980e05

Please sign in to comment.