An execution plan has been generated and is shown below. Resource actions are indicated with the following symbols: - destroy  Terraform will perform the following actions:  # module.eks.kubernetes_config_map.aws_auth[0] will be destroyed  - resource "kubernetes_config_map" "aws_auth" { - data = { - "mapAccounts" = jsonencode([]) - "mapRoles" = <<-EOT - "groups": - "system:bootstrappers" - "system:nodes" "rolearn": "arn:aws:iam::924583349120:role/training-eks-orAxPAav2020120709260926150000000c" "username": "system:node:{{EC2PrivateDNSName}}" EOT - "mapUsers" = jsonencode([]) } -> null - id = "kube-system/aws-auth" -> null - metadata { - generation = 0 -> null - labels = { - "app.kubernetes.io/managed-by" = "Terraform" - "terraform.io/module" = "terraform-aws-modules.eks.aws" } -> null - name = "aws-auth" -> null - namespace = "kube-system" -> null - resource_version = "697" -> null - self_link = "/api/v1/namespaces/kube-system/configmaps/aws-auth" -> null - uid = "600dd4c3-85b8-4211-ae0a-1628a71350e7" -> null } } Plan: 0 to add, 0 to change, 1 to destroy.  Changes to Outputs:  Warning: Version constraints inside provider configuration blocks are deprecated  on versions.tf line 7, in provider "random": 7: version = "~> 2.1"  Terraform 0.13 and earlier allowed provider version constraints inside the provider configuration block, but that is now deprecated and will be removed in a future version of Terraform. To silence this warning, move the provider version constraint into the required_providers block. (and 4 more similar warnings elsewhere)   Warning: Interpolation-only expressions are deprecated  on .terraform/modules/vpc/outputs.tf line 353, in output "vpc_endpoint_sqs_id": 353: value = "${element(concat(aws_vpc_endpoint.sqs.*.id, list("")), 0)}"  Terraform 0.11 and earlier required all non-constant expressions to be provided via interpolation syntax, but this pattern is now deprecated. To silence this warning, remove the "${ sequence from the start and the }" sequence from the end of this expression, leaving just the inner expression. Template interpolation syntax is still used to construct strings from expressions when the template includes multiple interpolation sequences or a mixture of literal strings and interpolations. This deprecation applies only to templates that consist entirely of a single interpolation sequence. (and 11 more similar warnings elsewhere)  Do you really want to destroy all resources? Terraform will destroy all your managed infrastructure, as shown above. There is no undo. Only 'yes' will be accepted to confirm. Enter a value:  module.eks.kubernetes_config_map.aws_auth[0]: Destroying... [id=kube-system/aws-auth]