From d01a687caab32509771a6955174a3d7fce5a87e7 Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Thu, 26 May 2022 14:28:17 -0700 Subject: [PATCH] fix: typo in docker terraform template (#1811) --- examples/templates/docker-image-builds/main.tf | 2 +- examples/templates/docker/main.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/templates/docker-image-builds/main.tf b/examples/templates/docker-image-builds/main.tf index 76beb47965..e39bf247f5 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 7900a1f362..b9783a5e2a 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