terraform-oci-compute-instance
terraform-oci-compute-instance copied to clipboard
Update for terraform 1.x.x and OCI provider 4.x.x
Terraform 0.12 is already EOL. There are some syntax that works in 0.12 but not in 1.0.0 anymore. Unless customers still plan on using 0.12, I think you should bump this to 1.0.0
Originally posted by @hyder in https://github.com/oracle-terraform-modules/terraform-oci-compute-instance/pull/68#discussion_r696290970
Looks like this was already done: https://github.com/oracle-terraform-modules/terraform-oci-compute-instance/blob/main/versions.tf
terraform {
required_providers {
oci = {
source = "oracle/oci"
version = ">=4.67.3"
}
}
required_version = ">= 1.0.0"
}