mirror of
https://github.com/coder/coder.git
synced 2026-06-02 20:48:20 +00:00
24c7a09321
Pins the `coder/coderd` Terraform provider in `dogfood/main.tf` to `>= 0.0.13`. Previously there was no version constraint at all. The latest release [v0.0.13](https://github.com/coder/terraform-provider-coderd/releases/tag/v0.0.13) includes: - `workspace_sharing` attribute on `coderd_organization` resource - `cors_behavior` support on template resource - Dependency updates (coder/coder SDK bumped to v2.29.2, various Terraform plugin framework updates) --------- Co-authored-by: blink-so[bot] <211532188+blink-so[bot]@users.noreply.github.com>
142 lines
3.8 KiB
Terraform
142 lines
3.8 KiB
Terraform
terraform {
|
|
required_providers {
|
|
coderd = {
|
|
source = "coder/coderd"
|
|
version = ">= 0.0.13"
|
|
}
|
|
}
|
|
backend "gcs" {
|
|
bucket = "coder-dogfood-tf-state"
|
|
}
|
|
}
|
|
|
|
import {
|
|
to = coderd_template.envbuilder_dogfood
|
|
id = "e75f1212-834c-4183-8bed-d6817cac60a5"
|
|
}
|
|
|
|
data "coderd_organization" "default" {
|
|
is_default = true
|
|
}
|
|
|
|
data "coderd_user" "machine" {
|
|
username = "machine"
|
|
}
|
|
|
|
variable "CODER_TEMPLATE_NAME" {
|
|
type = string
|
|
}
|
|
|
|
variable "CODER_TEMPLATE_VERSION" {
|
|
type = string
|
|
}
|
|
|
|
variable "CODER_TEMPLATE_DIR" {
|
|
type = string
|
|
}
|
|
|
|
variable "CODER_TEMPLATE_MESSAGE" {
|
|
type = string
|
|
}
|
|
|
|
variable "CODER_DOGFOOD_ANTHROPIC_API_KEY" {
|
|
type = string
|
|
description = "The API key that workspaces will use to authenticate with the Anthropic API."
|
|
default = ""
|
|
sensitive = true
|
|
}
|
|
|
|
resource "coderd_template" "dogfood" {
|
|
name = var.CODER_TEMPLATE_NAME
|
|
display_name = "Write Coder on Coder"
|
|
description = "The template to use when developing Coder on Coder!"
|
|
icon = "/emojis/1f3c5.png"
|
|
organization_id = data.coderd_organization.default.id
|
|
versions = [
|
|
{
|
|
name = var.CODER_TEMPLATE_VERSION
|
|
message = var.CODER_TEMPLATE_MESSAGE
|
|
directory = var.CODER_TEMPLATE_DIR
|
|
active = true
|
|
tf_vars = [
|
|
{
|
|
name = "anthropic_api_key"
|
|
value = var.CODER_DOGFOOD_ANTHROPIC_API_KEY
|
|
}
|
|
]
|
|
}
|
|
]
|
|
acl = {
|
|
groups = [{
|
|
id = data.coderd_organization.default.id
|
|
role = "use"
|
|
}]
|
|
users = [{
|
|
id = data.coderd_user.machine.id
|
|
role = "admin"
|
|
}]
|
|
}
|
|
activity_bump_ms = 10800000
|
|
allow_user_auto_start = true
|
|
allow_user_auto_stop = true
|
|
allow_user_cancel_workspace_jobs = false
|
|
auto_start_permitted_days_of_week = ["friday", "monday", "saturday", "sunday", "thursday", "tuesday", "wednesday"]
|
|
auto_stop_requirement = {
|
|
days_of_week = ["sunday"]
|
|
weeks = 1
|
|
}
|
|
default_ttl_ms = 28800000
|
|
deprecation_message = null
|
|
failure_ttl_ms = 604800000
|
|
require_active_version = true
|
|
time_til_dormant_autodelete_ms = 7776000000
|
|
time_til_dormant_ms = 8640000000
|
|
}
|
|
|
|
|
|
resource "coderd_template" "envbuilder_dogfood" {
|
|
name = "coder-envbuilder"
|
|
display_name = "Write Coder on Coder using Envbuilder"
|
|
description = "Write Coder on Coder using a workspace built by Envbuilder."
|
|
icon = "/emojis/1f3d7.png" # 🏗️
|
|
organization_id = data.coderd_organization.default.id
|
|
versions = [
|
|
{
|
|
name = var.CODER_TEMPLATE_VERSION
|
|
message = var.CODER_TEMPLATE_MESSAGE
|
|
directory = "./coder-envbuilder"
|
|
active = true
|
|
tf_vars = [{
|
|
# clusters/dogfood-v2/coder/provisioner/configs/values.yaml#L191-L194
|
|
name = "envbuilder_cache_dockerconfigjson_path"
|
|
value = "/home/coder/envbuilder-cache-dockerconfig.json"
|
|
}]
|
|
}
|
|
]
|
|
acl = {
|
|
groups = [{
|
|
id = data.coderd_organization.default.id
|
|
role = "use"
|
|
}]
|
|
users = [{
|
|
id = data.coderd_user.machine.id
|
|
role = "admin"
|
|
}]
|
|
}
|
|
activity_bump_ms = 10800000
|
|
allow_user_auto_start = true
|
|
allow_user_auto_stop = true
|
|
allow_user_cancel_workspace_jobs = false
|
|
auto_start_permitted_days_of_week = ["friday", "monday", "saturday", "sunday", "thursday", "tuesday", "wednesday"]
|
|
auto_stop_requirement = {
|
|
days_of_week = ["sunday"]
|
|
weeks = 1
|
|
}
|
|
default_ttl_ms = 28800000
|
|
deprecation_message = null
|
|
failure_ttl_ms = 604800000
|
|
require_active_version = true
|
|
time_til_dormant_autodelete_ms = 7776000000
|
|
time_til_dormant_ms = 8640000000
|
|
}
|