Skip to content
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add rbac_roles to coder_workspace_owner data source #330

Merged
merged 1 commit into from
Mar 14, 2025

Conversation

nxf5025
Copy link
Contributor

@nxf5025 nxf5025 commented Jan 23, 2025

This PR updates the schema for the coder_workspace_owner data source to expose rbac_roles.

It's very similar to #287

Relevant coder/coder PR - coder/coder#16407

Copy link

github-actions bot commented Jan 23, 2025

All contributors have signed the CLA ✍️ ✅
Posted by the CLA Assistant Lite bot.

@nxf5025
Copy link
Contributor Author

nxf5025 commented Jan 23, 2025

I have read the CLA Document and I hereby sign the CLA

@nxf5025 nxf5025 force-pushed the rbac-roles-to-data-source branch from d784267 to 7414a32 Compare January 27, 2025 14:01
@Emyrk
Copy link
Member

Emyrk commented Jan 27, 2025

It does require some coder/coder updates.

I have plans to pull in more user context such as groups. 👍

@nxf5025 nxf5025 force-pushed the rbac-roles-to-data-source branch from 0c3001a to 9bae197 Compare January 30, 2025 23:36
Emyrk pushed a commit to coder/coder that referenced this pull request Mar 2, 2025
Part of coder/terraform-provider-coder#330

Adds support for the coder_workspace_owner.rbac_roles attribute
@matifali matifali requested a review from Emyrk March 4, 2025 20:42
@matifali matifali changed the title feat: Add rbac_roles to coder_workspace_owner data source feat: add rbac_roles to coder_workspace_owner data source Mar 5, 2025
@matifali matifali changed the title feat: add rbac_roles to coder_workspace_owner data source feat: add rbac_roles to coder_workspace_owner data source Mar 5, 2025
Comment on lines 62 to 68
var rbacRoles []string
if rolesRaw, ok := os.LookupEnv("CODER_WORKSPACE_OWNER_RBAC_ROLES"); ok {
if err := json.NewDecoder(strings.NewReader(rolesRaw)).Decode(&rbacRoles); err != nil {
return diag.Errorf("invalid user rbac roles: %s", err.Error())
}
}
_ = rd.Set("rbac_roles", rbacRoles)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

CODER_WORKSPACE_OWNER_RBAC_ROLES is now a data structure right?

https://github.com/coder/coder/blob/77479cdd51f5154054e27734b30900a01f014729/provisionersdk/proto/provisioner.proto#L258-L261

So we need to json decode the env var, and correct the schema to be an object with 2 fields: name and org_id.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Correct - I plan to revisit this today or tomorrow and make the updates based on the changes in the other PR

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@nxf5025 awesome, just keep pinging me 👍

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Emyrk - Just pushed an update. Let me know if any changes are needed

@nxf5025 nxf5025 force-pushed the rbac-roles-to-data-source branch from 9bae197 to 8d20979 Compare March 5, 2025 20:26
@nxf5025
Copy link
Contributor Author

nxf5025 commented Mar 14, 2025

Hey @Emyrk - Anything else you need from my end?

Copy link
Member

@Emyrk Emyrk left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LG 👍

@Emyrk Emyrk merged commit eab8698 into coder:main Mar 14, 2025
1 of 3 checks passed
@github-actions github-actions bot locked and limited conversation to collaborators Mar 14, 2025
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants