oracle-terraform-modules / terraform-oci-compute-instance

Terraform Module for creating Oracle Cloud Infrastructure compute instances
https://registry.terraform.io/modules/oracle-terraform-modules/compute-instance/oci/latest
Other
46 stars 62 forks source link

Update for terraform 1.x.x and OCI provider 4.x.x #69

Open kral2 opened 3 years ago

kral2 commented 3 years ago

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__

vadyochik commented 2 years ago

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"
}