ggtisc
ggtisc
Hi @apenen this scenario was replicated a considerable number of times with the same message: `No changes: Your infrastructure matches the configuration` Also as the [documentation](https://registry.terraform.io/providers/hashicorp/google/latest/docs/resources/pubsub_subscription#retry_policy) describes: If you don't...
> @ggtisc this looks like a classic [permadiff](https://googlecloudplatform.github.io/magic-modules/develop/permadiff/), just want to double-check that you weren't able to reproduce it? Being more precise, the provided code and configuration was applied successfully...
Reviewing in deep this kind of scenarios are detected as a [permadiff](https://googlecloudplatform.github.io/magic-modules/develop/permadiff/) as @melinath commented, but now if you are managing the value of the `maximum_backoff` with a variable is...
What do you think @melinath? I've reproduced this issue with this initial config for the `retry_policy`: ``` retry_policy { maximum_backoff = "15s" minimum_backoff = "10s" } ``` Then executed a...
According to [Google Cloud Documentation](https://cloud.google.com/compute/docs/reference/rest/v1/securityPolicies/addRule) `rate_limit_options` is a valid field, but it is not present in [terraform registry](https://registry.terraform.io/providers/hashicorp/google/latest/docs/resources/compute_security_policy_rule) However the field `rate_limit_options` is available for `google_compute_security_policy` as you can see...
Giving a 2nd view it is possible to use the field without using beta versions, but on the other hand when trying to run a terraform apply all the possible...
Hi @paololazzari! This scenario was replicated successfully with the terraform and Google provider versions you shared without errors. I suggest you to check the next: - Verify how you are...
This ticket was replicated again with the same result, you should check your variables and be sure that they are correct or simplify your code hard coding their values to...
Hi @paololazzari! This ticket was replicated successfully with the provided configuration, versions and specifications, but after importing the resource and executing the `terraform plan` the terminal message was: `Terraform has...
As was mentioned in the above steps the unique initial code (step 1) was `resource "google_compute_security_policy" "policy" {}`