Closed ivanrivai-smma closed 8 months ago
@ivanrivai-smma in another issue thread they had the same problem (me too).
I fixed it by changing my versions.tf for google to 4.0.0:
terraform {
required_providers {
google = {
source = "hashicorp/google"
version = "4.0.0"
}
}
required_version = ">= 0.13"
}
https://github.com/GoogleCloudPlatform/terraformer/issues/1695
@ivanrivai-smma in another issue thread they had the same problem (me too).
I fixed it by changing my versions.tf for google to 4.0.0:
terraform { required_providers { google = { source = "hashicorp/google" version = "4.0.0" } } required_version = ">= 0.13" }
1695
thanks man, so it was the provider version!
when i try to run this command: terraformer import google --projects xxx --resources=firewall --regions asia-southeast2
types
package type, a pointer type or a custom type that handles null values.types
Type: basetypes.ObjectValuediagnostic_severity=ERROR diagnostic_summary="Value Conversion Error" @caller=github.com/hashicorp/terraform-plugin-go@v0.20.0/tfprotov5/internal/diag/diagnostics.go:62 @module=sdk.proto tf_rpc=Configure tf_proto_version=5.4 tf_provider_addr=registry.terraform.io/hashicorp/google tf_req_id=92996a22-50d1-e6c1-8978-5a912fe07e8e timestamp="2024-03-25T13:47:02.042+0700"
i am using:
Is this a version imcompatibility, outdated go version, or any other reason?
Thank you.