@@ -14,8 +14,8 @@ This module installs small, robust scripts in your workspace to create and extra
1414module "archive" {
1515 count = data.coder_workspace.me.start_count
1616 source = "registry.coder.com/coder-labs/archive/coder"
17- version = "0.0.2 "
18- agent_id = coder_agent.main .id
17+ version = "0.0.3 "
18+ agent_id = coder_agent.example .id
1919
2020 paths = ["./projects", "./code"]
2121}
@@ -43,8 +43,8 @@ Basic example:
4343module "archive" {
4444 count = data.coder_workspace.me.start_count
4545 source = "registry.coder.com/coder-labs/archive/coder"
46- version = "0.0.2 "
47- agent_id = coder_agent.main .id
46+ version = "0.0.3 "
47+ agent_id = coder_agent.example .id
4848
4949 # Paths to include in the archive (files or directories).
5050 directory = "~"
@@ -61,8 +61,8 @@ Customize compression and output:
6161module "archive" {
6262 count = data.coder_workspace.me.start_count
6363 source = "registry.coder.com/coder-labs/archive/coder"
64- version = "0.0.2 "
65- agent_id = coder_agent.main .id
64+ version = "0.0.3 "
65+ agent_id = coder_agent.example .id
6666
6767 directory = "/"
6868 paths = ["/etc", "/home"]
@@ -78,8 +78,8 @@ Enable auto-archive on stop:
7878module "archive" {
7979 count = data.coder_workspace.me.start_count
8080 source = "registry.coder.com/coder-labs/archive/coder"
81- version = "0.0.2 "
82- agent_id = coder_agent.main .id
81+ version = "0.0.3 "
82+ agent_id = coder_agent.example .id
8383
8484 # Creates /tmp/coder-archive.tar.gz of the users home directory (defaults).
8585 create_on_stop = true
@@ -92,8 +92,8 @@ Extract on start:
9292module "archive" {
9393 count = data.coder_workspace.me.start_count
9494 source = "registry.coder.com/coder-labs/archive/coder"
95- version = "0.0.2 "
96- agent_id = coder_agent.main .id
95+ version = "0.0.3 "
96+ agent_id = coder_agent.example .id
9797
9898 # Where to look for the archive file to extract:
9999 output_dir = "/tmp"
0 commit comments