@@ -14,7 +14,7 @@ Automatically install and run [Mux](https://github.com/coder/mux) in a Coder wor
1414module "mux" {
1515 count = data.coder_workspace.me.start_count
1616 source = "registry.coder.com/coder/mux/coder"
17- version = "1.0.8 "
17+ version = "1.1.0 "
1818 agent_id = coder_agent.main.id
1919}
2020```
@@ -37,7 +37,7 @@ module "mux" {
3737module "mux" {
3838 count = data.coder_workspace.me.start_count
3939 source = "registry.coder.com/coder/mux/coder"
40- version = "1.0.8 "
40+ version = "1.1.0 "
4141 agent_id = coder_agent.main.id
4242}
4343```
@@ -48,7 +48,7 @@ module "mux" {
4848module "mux" {
4949 count = data.coder_workspace.me.start_count
5050 source = "registry.coder.com/coder/mux/coder"
51- version = "1.0.8 "
51+ version = "1.1.0 "
5252 agent_id = coder_agent.main.id
5353 # Default is "latest"; set to a specific version to pin
5454 install_version = "0.4.0"
@@ -63,7 +63,7 @@ Start Mux with `mux server --add-project /path/to/project`:
6363module "mux" {
6464 count = data.coder_workspace.me.start_count
6565 source = "registry.coder.com/coder/mux/coder"
66- version = "1.0.8 "
66+ version = "1.1.0 "
6767 agent_id = coder_agent.main.id
6868 add-project = "/path/to/project"
6969}
@@ -75,7 +75,7 @@ module "mux" {
7575module "mux" {
7676 count = data.coder_workspace.me.start_count
7777 source = "registry.coder.com/coder/mux/coder"
78- version = "1.0.8 "
78+ version = "1.1.0 "
7979 agent_id = coder_agent.main.id
8080 port = 8080
8181}
@@ -89,7 +89,7 @@ Run an existing copy of Mux if found, otherwise install from npm:
8989module "mux" {
9090 count = data.coder_workspace.me.start_count
9191 source = "registry.coder.com/coder/mux/coder"
92- version = "1.0.8 "
92+ version = "1.1.0 "
9393 agent_id = coder_agent.main.id
9494 use_cached = true
9595}
@@ -103,7 +103,7 @@ Run without installing from the network (requires Mux to be pre-installed):
103103module "mux" {
104104 count = data.coder_workspace.me.start_count
105105 source = "registry.coder.com/coder/mux/coder"
106- version = "1.0.8 "
106+ version = "1.1.0 "
107107 agent_id = coder_agent.main.id
108108 install = false
109109}
0 commit comments