Skip to content

Commit 501faf3

Browse files
committed
updating everything
1 parent 876e662 commit 501faf3

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

.github/workflows/terraform-apply-eks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
env:
77
TF_CLOUD_ORGANIZATION: "DSB"
88
TF_API_TOKEN: "${{ secrets.TF_API_TOKEN }}"
9-
TF_WORKSPACE: "dsb-aws-devsecops-eks-cluster"
9+
TF_WORKSPACE: "aws-devsecops-eks-cluster"
1010
CONFIG_DIRECTORY: "./terraform/eks-cluster"
1111

1212
jobs:

.github/workflows/terraform-apply-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
env:
77
TF_CLOUD_ORGANIZATION: "DSB"
88
TF_API_TOKEN: "${{ secrets.TF_API_TOKEN }}"
9-
TF_WORKSPACE: "dsb-aws-devsecops-pipelines"
9+
TF_WORKSPACE: "aws-devsecops-pipelines"
1010
CONFIG_DIRECTORY: "./terraform/pipelines"
1111

1212
jobs:

terraform/eks-cluster/provider.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ terraform {
77
organization = "DSB"
88

99
workspaces {
10-
name = "dsb-aws-devsecops-eks-cluster"
10+
name = "aws-devsecops-eks-cluster"
1111
}
1212
}
1313
}

terraform/pipelines/OIDC_SETUP.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ This will create:
3636
7. Enter the following details:
3737
- Role ARN: The ARN of the role created in step 1 (output will be shown after terraform apply)
3838
- Session Duration: 3600 (or your preferred duration)
39-
- Workspace: dsb-aws-devsecops-pipelines
39+
- Workspace: aws-devsecops-pipelines
4040

4141
### 3. Update Workspace Variables
4242

terraform/pipelines/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ resource "random_id" "id" {
44
}
55

66
resource "aws_codestarconnections_connection" "default" {
7-
name = "dsb-github-connection-${random_id.id.hex}"
7+
name = "github-connection-${random_id.id.hex}"
88
provider_type = "GitHub"
99
}
1010

terraform/pipelines/oidc.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ resource "aws_iam_role" "terraform_cloud" {
2323
"app.terraform.io:aud" = "aws.workload.identity"
2424
},
2525
StringLike = {
26-
"app.terraform.io:sub" = "organization:DSB:workspace:dsb-aws-devsecops-pipelines:run_phase:*"
26+
"app.terraform.io:sub" = "organization:DSB:workspace:aws-devsecops-pipelines:run_phase:*"
2727
}
2828
}
2929
}

terraform/pipelines/provider.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ terraform {
99
organization = "DSB"
1010

1111
workspaces {
12-
name = "dsb-aws-devsecops-pipelines"
12+
name = "aws-devsecops-pipelines"
1313
}
1414
}
1515

terraform/pipelines/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ variable "resource_prefix" {
77
variable "eks_cluster_name" {
88
type = string
99
description = "Name of the EKS Cluster"
10-
default = "dsb-devsecops-cluster"
10+
default = "devsecops-cluster"
1111
}
1212

1313
variable "region" {

0 commit comments

Comments
 (0)