Skip to content

Commit 37f150f

Browse files
authored
fix: update k8s resources to v1 terraform resource types in workspace template (#726)
1 parent f4a8f33 commit 37f150f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

templates/kubernetes/homelab-workspace/configmap.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
resource "kubernetes_config_map" "workspace_scripts" {
1+
resource "kubernetes_config_map_v1" "workspace_scripts" {
22
count = data.coder_workspace.me.start_count
33

44
metadata {

templates/kubernetes/homelab-workspace/deployment.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
resource "kubernetes_deployment" "deployment" {
1+
resource "kubernetes_deployment_v1" "deployment" {
22
count = data.coder_workspace.me.start_count
33

44
metadata {

0 commit comments

Comments
 (0)