diff --git a/examples/templates/docker-image-builds/main.tf b/examples/templates/docker-image-builds/main.tf index 76beb4796597b..e39bf247f555b 100644 --- a/examples/templates/docker-image-builds/main.tf +++ b/examples/templates/docker-image-builds/main.tf @@ -29,7 +29,7 @@ variable "step1_docker_host_warning" { sensitive = true } variable "step2_arch" { - description = "arch: What archicture is your Docker host on?" + description = "arch: What architecture is your Docker host on?" validation { condition = contains(["amd64", "arm64", "armv7"], var.step2_arch) error_message = "Value must be amd64, arm64, or armv7." diff --git a/examples/templates/docker/main.tf b/examples/templates/docker/main.tf index 7900a1f36278f..b9783a5e2a495 100644 --- a/examples/templates/docker/main.tf +++ b/examples/templates/docker/main.tf @@ -32,7 +32,7 @@ variable "step1_docker_host_warning" { } variable "step2_arch" { description = <<-EOF - arch: What archicture is your Docker host on? + arch: What architecture is your Docker host on? note: codercom/enterprise-* images are only built for amd64 EOF