Skip to content

Commit

Permalink
Update Amazon DCV Windows module resources
Browse files Browse the repository at this point in the history
- Adjust alignment of arguments in Terraform code for readability.
- Change icon path in `coder_app` resource to use "/icon/dcv.svg".
  • Loading branch information
matifali committed Nov 20, 2024
2 parents 576d701 + 5101c27 commit ef1b086
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions amazon-dcv-windows/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ Enable DCV Server and Web Client on Windows workspaces.

```tf
module "dcv" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/amazon-dcv-windows/coder"
version = "1.0.24"
agent_id = resource.coder_agent.main.id
count = data.coder_workspace.me.start_count
source = "registry.coder.com/modules/amazon-dcv-windows/coder"
version = "1.0.24"
agent_id = resource.coder_agent.main.id
}
Expand All @@ -45,4 +45,4 @@ resource "coder_metadata" "dcv" {

## License

Amazon DCV is free to use on AWS EC2 instances but requires a license for other cloud providers. Please see the instructions [here](https://docs.aws.amazon.com/dcv/latest/adminguide/setting-up-license.html#setting-up-license-ec2) for more information.
Amazon DCV is free to use on AWS EC2 instances but requires a license for other cloud providers. Please see the instructions [here](https://docs.aws.amazon.com/dcv/latest/adminguide/setting-up-license.html#setting-up-license-ec2) for more information.
2 changes: 1 addition & 1 deletion amazon-dcv-windows/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ resource "coder_app" "web-dcv" {
slug = var.slug
display_name = "Web DCV"
url = "https://localhost:${var.port}${local.web_url_path}?username=${local.admin_username}&password=${var.admin_password}"
icon = "/icon/desktop.svg"
icon = "/icon/dcv.svg"
subdomain = var.subdomain
}

Expand Down

0 comments on commit ef1b086

Please sign in to comment.