Skip to content

Commit

Permalink
local updated
Browse files Browse the repository at this point in the history
  • Loading branch information
janibashamd committed Nov 30, 2023
1 parent 9eb03d6 commit 123bcf5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/waf-k8s-apply.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
terraform_infra:
name: "AWS Infra"
name: "Deploy AWS Infra"
runs-on: ubuntu-latest
defaults:
run:
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
run: terraform apply -auto-approve -input=false

terraform_eks:
name: "AWS EKS"
name: "Deploy AWS EKS"
runs-on: ubuntu-latest
needs: terraform_infra
defaults:
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:


terraform_bookinfo:
name: "Bookinfo"
name: "Deploy Bookinfo App"
runs-on: ubuntu-latest
needs: terraform_eks
defaults:
Expand Down Expand Up @@ -231,7 +231,7 @@ jobs:


terraform_ce:
name: "EKS CE Deployment"
name: "Deploy EKS CE"
runs-on: ubuntu-latest
needs: terraform_bookinfo
defaults:
Expand Down Expand Up @@ -346,7 +346,7 @@ jobs:


terraform_xc:
name: "F5XC WAF"
name: "Deploy F5XC WAF"
runs-on: ubuntu-latest
needs: terraform_ce
defaults:
Expand Down
4 changes: 2 additions & 2 deletions xc/locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ locals {
vnet_name = try(data.tfe_outputs.infra.values.vnet_name, "")
subnet_name = try(data.tfe_outputs.infra.values.subnet_name, "")
subnet_id = try(data.tfe_outputs.infra.values.subnet_id, "")
host = try(data.tfe_outputs.eks.values.cluster_endpoint, "")
host = try(data.tfe_outputs.eks[0].values.cluster_endpoint, "")
aws_region = try(data.tfe_outputs.infra.values.aws_region, "")
cluster_name = try(data.tfe_outputs.eks.values.cluster_name, "")
cluster_name = try(data.tfe_outputs.eks[0].values.cluster_name, "")
}

0 comments on commit 123bcf5

Please sign in to comment.