Skip to content

Commit

Permalink
fix: Add missing google-beta provider to required_providers (#282)
Browse files Browse the repository at this point in the history
* Add missing google-beta provider to required_providers

* Add provider_meta for the google-beta provider

* Adding the google-beta provider for MySQL

* Fixing copy & paste error

Co-authored-by: Bharath KKB <bharathkrishnakb@gmail.com>
  • Loading branch information
amir-hadi and bharathkkb committed Mar 16, 2022
1 parent b73b465 commit 714428c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions modules/mysql/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,17 @@ terraform {
source = "hashicorp/google"
version = ">= 4.4.0, < 5.0"
}
google-beta = {
source = "hashicorp/google-beta"
version = ">= 4.4.0, < 5.0"
}
}

provider_meta "google" {
module_name = "blueprints/terraform/terraform-google-sql-db:mysql/v10.0.0"
}
provider_meta "google-beta" {
module_name = "blueprints/terraform/terraform-google-sql-db:mysql/v10.0.0"
}

}
7 changes: 7 additions & 0 deletions modules/postgresql/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,17 @@ terraform {
source = "hashicorp/google"
version = ">= 4.4.0, < 5.0"
}
google-beta = {
source = "hashicorp/google-beta"
version = ">= 4.4.0, < 5.0"
}
}

provider_meta "google" {
module_name = "blueprints/terraform/terraform-google-sql-db:postgresql/v10.0.0"
}
provider_meta "google-beta" {
module_name = "blueprints/terraform/terraform-google-sql-db:postgresql/v10.0.0"
}

}

0 comments on commit 714428c

Please sign in to comment.