Skip to content

Commit

Permalink
remove deprecated var & add depends on
Browse files Browse the repository at this point in the history
  • Loading branch information
jarpat committed Nov 10, 2023
1 parent ede1228 commit 6f05dc9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,12 @@ provider "aws" {

data "aws_eks_cluster" "cluster" {
name = module.eks.cluster_name
depends_on = [module.eks.cluster_name]
}

data "aws_eks_cluster_auth" "cluster" {
name = module.eks.cluster_name
depends_on = [module.eks.cluster_name]
}

data "aws_availability_zones" "available" {}
Expand Down Expand Up @@ -280,7 +282,6 @@ module "postgresql" {
create_db_subnet_group = true
create_db_parameter_group = true
create_db_option_group = true
create_random_password = false
manage_master_user_password = false

}
Expand Down

0 comments on commit 6f05dc9

Please sign in to comment.