Skip to content

Commit 75fc998

Browse files
add template to gitops flow
1 parent c19bed6 commit 75fc998

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

templates/template_versions.tf

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,3 +99,24 @@ resource "coderd_template" "awshp-windows-dcv" {
9999
name = var.coder_gitsha
100100
}]
101101
}
102+
103+
resource "coderd_template" "awshp-k8s-rag-with-claude-code" {
104+
name = "awshp-k8s-rag-with-claude-code"
105+
display_name = "AWS Workshop Kubernetes AWS RAG Prototyping with Claude Code"
106+
description = "Provision Kubernetes Deployments as Coder workspaces with Anthropic Claude Code for AWS RAG prototyping."
107+
icon = "/icon/k8s.png"
108+
versions = [{
109+
directory = "./awshp-k8s-rag-with-claude-code"
110+
active = true
111+
# Version name is optional
112+
name = var.coder_gitsha
113+
tf_vars = [{
114+
name = "namespace"
115+
value = "coder"
116+
},
117+
{
118+
name = "eks_cluster_name"
119+
value = "coder-aws-cluster"
120+
}]
121+
}]
122+
}

0 commit comments

Comments
 (0)