diff --git a/copy_images.tf b/copy_images.tf index 45370fa..764fc25 100644 --- a/copy_images.tf +++ b/copy_images.tf @@ -16,7 +16,7 @@ locals { enabled = true dest_path = null name = "kubectl" - source_image = "gavinbunney/kubectl" + source_image = "bitnami/kubectl" source_registry = "docker.io" source_tag = var.kubectl_image_tag tag = var.kubectl_image_tag diff --git a/outputs.tf b/outputs.tf index 67f697c..f31bc10 100644 --- a/outputs.tf +++ b/outputs.tf @@ -26,18 +26,6 @@ output "rwx_storage_class" { value = kubernetes_storage_class.efs-sc.metadata[0].name } -################################################################################ -# IRSA Roles created -################################################################################ -# output "cluster_autoscaler_irsa_role" { -# description = "The arn/name/unique_id of the irsa role for the cluster autoscaler addon" -# value = { -# arn = module.cluster_autoscaler_irsa_role.iam_role_arn -# name = module.cluster_autoscaler_irsa_role.iam_role_name -# unique_id = module.cluster_autoscaler_irsa_role.iam_role_unique_id -# } -# } - ################################################################################ # Details about kubectl image ################################################################################ diff --git a/requirements.tf b/requirements.tf index 9004b5c..8c1f05b 100644 --- a/requirements.tf +++ b/requirements.tf @@ -1,21 +1,22 @@ terraform { + required_version = ">= 0.13" required_providers { aws = { source = "hashicorp/aws" - version = "~> 5.14.0" + version = ">= 5.14.0" } helm = { source = "hashicorp/helm" - version = "~> 2.11.0" + version = ">= 2.11.0" } kubectl = { source = "gavinbunney/kubectl" - version = "~> 1.14.0" + version = ">= 1.14.0" } kubernetes = { source = "hashicorp/kubernetes" - version = "~> 2.23.0" + version = ">= 2.23.0" } }