DEV Community

Discussion on: Deploying a highly available Vault cluster on Amazon EKS using Terraform

Collapse
 
chabane profile image
Chabane R. • Edited

Thank you for your feedback

I forgot to fix the terraform provider version in the version.tf. You should fix the terraform provider version to be sure your terraform resources will continue to work with the AWS APIs.

Collapse
 
tbadmus profile image
tbadmus

Thanks for the quick response, i will do as advised.

Collapse
 
tbadmus profile image
tbadmus

So what version of terraform do you advice i stick to for this?

Thread Thread
 
chabane profile image
Chabane R. • Edited

As the article has been written last year (at least 3.37.0), you should fix the terraform version with this one

terraform {
  required_providers {
    aws = {
      source  = "hashicorp/aws"
      version = "~> 3.0"
    }
  }
}
Enter fullscreen mode Exit fullscreen mode