Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c7808c commit 097fdafCopy full SHA for 097fdaf
dogfood/contents/main.tf
@@ -275,6 +275,12 @@ resource "coder_agent" "dev" {
275
EOT
276
}
277
278
+# Add a cost so we get some quota usage in dev.coder.com
279
+resource "coder_metadata" "home_volume" {
280
+ resource_id = docker_volume.home_volume.id
281
+ daily_cost = 1
282
+}
283
+
284
resource "docker_volume" "home_volume" {
285
name = "coder-${data.coder_workspace.me.id}-home"
286
# Protect the volume from being deleted due to changes in attributes.
0 commit comments