Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit72305aa

Browse files
committed
feat: add oidc_id_token to workspace_owner data source
Adds support for the new CODER_WORKSPACE_OWNER_OIDC_ID_TOKEN environmentvariable, exposing the OIDC ID token through the coder_workspace_ownerdata source as oidc_id_token.This complements the existing oidc_access_token field.
1 parentc822a5f commit72305aa

19 files changed

+31
-17
lines changed

‎docs/data-sources/external_auth.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
# generated by https://github.com/hashicorp/terraform-plugin-docs
3-
page_title:"coder_external_auth Data Source -terraform-provider-coder"
3+
page_title:"coder_external_auth Data Source - coder"
44
subcategory:""
55
description:|-
66
Use this data source to require users to authenticate with an external service prior to workspace creation. This can be used to pre-authenticate external services https://coder.com/docs/admin/external-auth in a workspace. (e.g. Google Cloud, Github, Docker, etc.)

‎docs/data-sources/parameter.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
# generated by https://github.com/hashicorp/terraform-plugin-docs
3-
page_title:"coder_parameter Data Source -terraform-provider-coder"
3+
page_title:"coder_parameter Data Source - coder"
44
subcategory:""
55
description:|-
66
Use this data source to configure editable options for workspaces.

‎docs/data-sources/provisioner.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
# generated by https://github.com/hashicorp/terraform-plugin-docs
3-
page_title:"coder_provisioner Data Source -terraform-provider-coder"
3+
page_title:"coder_provisioner Data Source - coder"
44
subcategory:""
55
description:|-
66
Use this data source to get information about the Coder provisioner.

‎docs/data-sources/task.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
# generated by https://github.com/hashicorp/terraform-plugin-docs
3-
page_title:"coder_task Data Source -terraform-provider-coder"
3+
page_title:"coder_task Data Source - coder"
44
subcategory:""
55
description:|-
66
Use this data source to read information about Coder Tasks.

‎docs/data-sources/workspace.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
# generated by https://github.com/hashicorp/terraform-plugin-docs
3-
page_title:"coder_workspace Data Source -terraform-provider-coder"
3+
page_title:"coder_workspace Data Source - coder"
44
subcategory:""
55
description:|-
66
Use this data source to get information for the active workspace build.

‎docs/data-sources/workspace_owner.md‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
# generated by https://github.com/hashicorp/terraform-plugin-docs
3-
page_title:"coder_workspace_owner Data Source -terraform-provider-coder"
3+
page_title:"coder_workspace_owner Data Source - coder"
44
subcategory:""
55
description:|-
66
Use this data source to fetch information about the workspace owner.
@@ -53,6 +53,7 @@ resource "coder_env" "git_author_email" {
5353
-`login_type` (String) The type of login the user has.
5454
-`name` (String) The username of the user.
5555
-`oidc_access_token` (String, Sensitive) A valid OpenID Connect access token of the workspace owner. This is only available if the workspace owner authenticated with OpenID Connect. If a valid token cannot be obtained, this value will be an empty string.
56+
-`oidc_id_token` (String, Sensitive) A valid OpenID Connect ID token of the workspace owner. This is only available if the workspace owner authenticated with OpenID Connect. If a valid token cannot be obtained, this value will be an empty string.
5657
-`rbac_roles` (List of Object) The RBAC roles of which the user is assigned. (see[below for nested schema](#nestedatt--rbac_roles))
5758
-`session_token` (String, Sensitive) Session token for authenticating with a Coder deployment. It is regenerated every time a workspace is started.
5859
-`ssh_private_key` (String, Sensitive) The user's generated SSH private key.

‎docs/data-sources/workspace_preset.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
# generated by https://github.com/hashicorp/terraform-plugin-docs
3-
page_title:"coder_workspace_preset Data Source -terraform-provider-coder"
3+
page_title:"coder_workspace_preset Data Source - coder"
44
subcategory:""
55
description:|-
66
Use this data source to predefine common configurations for coder workspaces. Users will have the option to select a defined preset, which will automatically apply the selected configuration. Any parameters defined in the preset will be applied to the workspace. Parameters that are defined by the template but not defined by the preset will still be configurable when creating a workspace.

‎docs/data-sources/workspace_tags.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
# generated by https://github.com/hashicorp/terraform-plugin-docs
3-
page_title:"coder_workspace_tags Data Source -terraform-provider-coder"
3+
page_title:"coder_workspace_tags Data Source - coder"
44
subcategory:""
55
description:|-
66
Use this data source to configure workspace tags to select provisioners.

‎docs/resources/agent.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
# generated by https://github.com/hashicorp/terraform-plugin-docs
3-
page_title:"coder_agent Resource -terraform-provider-coder"
3+
page_title:"coder_agent Resource - coder"
44
subcategory:""
55
description:|-
66
Use this resource to associate an agent.

‎docs/resources/agent_instance.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
# generated by https://github.com/hashicorp/terraform-plugin-docs
3-
page_title:"coder_agent_instance Resource -terraform-provider-coder"
3+
page_title:"coder_agent_instance Resource - coder"
44
subcategory:""
55
description:|-
66
Use this resource to associate an instance ID with an agent for zero-trust authentication. This association is done automatically for "google_compute_instance", "aws_instance", "azurerm_linux_virtual_machine", and "azurerm_windows_virtual_machine" resources.

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp