Skip to content

Commit

Permalink
Updated readme example references
Browse files Browse the repository at this point in the history
  • Loading branch information
RohitSquareops authored Dec 14, 2023
1 parent 1792bb3 commit 3ca99e0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,12 @@ module "managed_node_group_production" {
module "farget_profle" {
source = "squareops/eks/aws//modules/fargate-profile"
depends_on = [module.vpc, module.eks]
depends_on = [module.eks]
profile_name = "app"
subnet_ids = [module.vpc.private_subnets[0]]
subnet_ids = ["subnet-abc123"]
environment = "prod"
cluster_name = module.eks.cluster_name
namespace = ""
namespace = "default"
labels = {
"App-Services" = "fargate"
}
Expand Down

0 comments on commit 3ca99e0

Please sign in to comment.