- Notifications
You must be signed in to change notification settings - Fork23
feat: support workspace tags#223
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
85760c6
2601c43
434b170
2b87956
537e372
1d66a39
f0f2f34
98d4df8
9a46f65
4aa79df
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
provider "coder" {} | ||
data "coder_parameter" "os_selector" { | ||
name = "os_selector" | ||
display_name = "Operating System" | ||
mutable = false | ||
default = "osx" | ||
option { | ||
icon = "/icons/linux.png" | ||
name = "Linux" | ||
value = "linux" | ||
} | ||
option { | ||
icon = "/icons/osx.png" | ||
name = "OSX" | ||
value = "osx" | ||
} | ||
option { | ||
icon = "/icons/windows.png" | ||
name = "Windows" | ||
value = "windows" | ||
} | ||
} | ||
data "coder_parameter" "feature_cache_enabled" { | ||
name = "feature_cache_enabled" | ||
display_name = "Enable cache?" | ||
type = "bool" | ||
default = false | ||
} | ||
data "coder_parameter" "feature_debug_enabled" { | ||
name = "feature_debug_enabled" | ||
display_name = "Enable debug?" | ||
type = "bool" | ||
default = true | ||
} | ||
data "coder_workspace_tags" "custom_workspace_tags" { | ||
tags = { | ||
"cluster" = "developers" | ||
"os" = data.coder_parameter.os_selector.value | ||
"debug" = "${data.coder_parameter.feature_debug_enabled.value}+12345" | ||
"cache" = data.coder_parameter.feature_cache_enabled.value == "true" ? "nix-with-cache" : "no-cache" | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
package provider | ||
import ( | ||
"context" | ||
"github.com/google/uuid" | ||
"github.com/hashicorp/terraform-plugin-sdk/v2/diag" | ||
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" | ||
) | ||
type WorkspaceTags struct { | ||
Tags map[string]string | ||
} | ||
func workspaceTagDataSource() *schema.Resource { | ||
return &schema.Resource{ | ||
Description: "Use this data source to configure workspace tags to select provisioners.", | ||
ReadContext: func(ctx context.Context, rd *schema.ResourceData, i interface{}) diag.Diagnostics { | ||
rd.SetId(uuid.NewString()) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. For reviewers: Originally I wanted to place here the logic to load HCL files and read raw content of
BUT...
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. I don't understand why we want or need to do this here. This gets called atbuild time to allow other terraform resources to read data. I think we can just return the actual tagvalues and call it a day. The loading of the files and parsing HCL should happen during the template version import, where we already have access to the raw files:https://github.com/coder/coder/blob/f14927955d7361d9a50c633e69fbebca2d9946cb/provisioner/terraform/parse.go#L26 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more.
I didn't want to leak HCL parsing from the provider, but as long as we're doing it in template version import, I will extend that part. | ||
return nil | ||
}, | ||
Schema: map[string]*schema.Schema{ | ||
"tags": { | ||
Type: schema.TypeMap, | ||
Description: `Key-value map with workspace tags`, | ||
ForceNew: true, | ||
Optional: true, | ||
Elem: &schema.Schema{Type: schema.TypeString}, | ||
}, | ||
}, | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
package provider_test | ||
import ( | ||
"testing" | ||
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" | ||
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" | ||
"github.com/hashicorp/terraform-plugin-sdk/v2/terraform" | ||
"github.com/stretchr/testify/require" | ||
"github.com/coder/terraform-provider-coder/provider" | ||
) | ||
func TestWorkspaceTags(t *testing.T) { | ||
resource.Test(t, resource.TestCase{ | ||
Providers: map[string]*schema.Provider{ | ||
"coder": provider.New(), | ||
}, | ||
IsUnitTest: true, | ||
Steps: []resource.TestStep{{ | ||
Config: ` | ||
provider "coder" { | ||
} | ||
data "coder_parameter" "animal" { | ||
name = "animal" | ||
type = "string" | ||
default = "chris" | ||
} | ||
data "coder_workspace_tags" "wt" { | ||
tags = { | ||
"cat" = "james" | ||
"dog" = data.coder_parameter.animal.value | ||
} | ||
}`, | ||
Check: func(state *terraform.State) error { | ||
require.Len(t, state.Modules, 1) | ||
require.Len(t, state.Modules[0].Resources, 2) | ||
resource := state.Modules[0].Resources["data.coder_workspace_tags.wt"] | ||
require.NotNil(t, resource) | ||
attribs := resource.Primary.Attributes | ||
require.Equal(t, "james", attribs["tags.cat"]) | ||
require.Equal(t, "chris", attribs["tags.dog"]) | ||
return nil | ||
}, | ||
}}, | ||
}) | ||
} |