diff --git a/templates/packer/variables.pkr.hcl b/templates/packer/variables.pkr.hcl index 4e01a2580..44a628678 100644 --- a/templates/packer/variables.pkr.hcl +++ b/templates/packer/variables.pkr.hcl @@ -2,8 +2,14 @@ # when running `packer build` # AWS account configuration. -variable "aws_access_key" { type = string } -variable "aws_secret_key" { type = string } +variable "aws_access_key" { + type = string + default = "" +} +variable "aws_secret_key" { + type = string + default = "" +} variable "region" { type = string default = "us-east-1"