mumoshu / terraform-provider-eksctl

Manage AWS EKS clusters using Terraform and eksctl
Apache License 2.0
234 stars 44 forks source link

Feature request: pass credentials to eksctl #72

Open misogihagi opened 7 months ago

misogihagi commented 7 months ago

I usually use tfvars to set credentials. It would be happy terraform life if set up with like:

provider "eksctl" {
  region     = "us-west-2"
  access_key = "my-access-key"
  secret_key = "my-secret-key"
}