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

fix(tpg v5)!: rule.rate_limit_options.enforce_on_key has not default value #77

Merged
merged 9 commits into from
Oct 24, 2023
4 changes: 2 additions & 2 deletions examples/security-policy-all/versions.tf

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we need versions.tf for examples?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Infrequently, might be needed if the example make use a provider directly such as Random, etc.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since we dont have any other provider except google, leme remove it.

Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = "~> 4.0"
version = ">= 4.0"
apeabody marked this conversation as resolved.
Show resolved Hide resolved
}
google-beta = {
source = "hashicorp/google-beta"
version = "~> 4.0"
version = ">= 4.0"
}
}
}
4 changes: 2 additions & 2 deletions examples/security-policy-edge/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = "~> 4.0"
version = ">= 4.0"
}
google-beta = {
source = "hashicorp/google-beta"
version = "~> 4.0"
version = ">= 4.0"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = "~> 4.0"
version = ">= 4.0"
}
google-beta = {
source = "hashicorp/google-beta"
version = "~> 4.0"
version = ">= 4.0"
}
}
}
4 changes: 2 additions & 2 deletions examples/security-policy-recaptcha/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = "~> 4.0"
version = ">= 4.0"
}
google-beta = {
source = "hashicorp/google-beta"
version = "~> 4.0"
version = ">= 4.0"
}
}
}
4 changes: 2 additions & 2 deletions examples/simple-example/versions.tf
imrannayer marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = "~> 4.0"
version = ">= 4.0"
}
google-beta = {
source = "hashicorp/google-beta"
version = "~> 4.0"
version = ">= 4.0"
}
}
}
4 changes: 2 additions & 2 deletions versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = ">= 4.79.0, < 5.0"
version = ">= 4.79.0, < 6.0"
imrannayer marked this conversation as resolved.
Show resolved Hide resolved
apeabody marked this conversation as resolved.
Show resolved Hide resolved
}
google-beta = {
source = "hashicorp/google-beta"
version = ">= 4.79.0, < 5.0"
version = ">= 4.79.0, < 6.0"
imrannayer marked this conversation as resolved.
Show resolved Hide resolved
apeabody marked this conversation as resolved.
Show resolved Hide resolved
}
}
provider_meta "google" {
Expand Down