Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/resources/external_agent.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,15 @@ page_title: "coder_external_agent Resource - terraform-provider-coder"
subcategory: ""
description: |-
Define an external agent to be used in a workspace.
~> Warning: External agents require a Premium https://coder.com/pricing Coder license.
---

# coder_external_agent (Resource)

Define an external agent to be used in a workspace.

~> **Warning:** External agents require a [Premium](https://coder.com/pricing) Coder license.



<!-- schema generated by tfplugindocs -->
Expand Down
2 changes: 1 addition & 1 deletion provider/external_agent.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ func externalAgentResource() *schema.Resource {
return &schema.Resource{
SchemaVersion: 1,

Description: "Define an external agent to be used in a workspace.",
Description: "Define an external agent to be used in a workspace.\n\n~> **Warning:** External agents require a [Premium](https://coder.com/pricing) Coder license.",
CreateContext: func(ctx context.Context, rd *schema.ResourceData, _ interface{}) diag.Diagnostics {
rd.SetId(uuid.NewString())
return nil
Expand Down
Loading