mumoshu / terraform-provider-eksctl

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

AWS credentials should be configurable at provider level #47

Open nadenf opened 3 years ago

nadenf commented 3 years ago

Similar to how we can configure AWS provider like this:

provider aws {
  region                = var.aws_region
  access_key            = var.aws_root_access_key
  secret_key            = var.aws_root_secret
  allowed_account_ids   = [ var.aws_account_id ]
}

It would be nice to configure this provider in a similar way.