From 21382a3d5edea0467c28aa32c78b30c63d821116 Mon Sep 17 00:00:00 2001 From: Kevin Dickerson Date: Thu, 23 Feb 2017 15:48:29 -0800 Subject: [PATCH] Fix typo for Chef license agreement notifications --- CHANGELOG.md | 4 ++++ README.md | 2 +- providers/aws/route53_ssl/files/chef_mlsa.bash | 6 +++--- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index af9bf52..b40e623 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ tf_hachef CHANGELOG This file is used to list changes made in each version of the tf_hachef Terraform plan. +v0.2.10 (2017-02-23) +-------------------- +- Fixed typo in a warning message relating to accepting Chef license + v0.2.9 (2016-10-29) ------------------- - Added ETCD tunable variables and implementation diff --git a/README.md b/README.md index c167e19..abe80cb 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ per plan. ## Contributors * [Brian Menges](https://github.com/mengesb) - +* [Kevin Dickerson, Loom](https://loom.technology) ## Runtime sample diff --git a/providers/aws/route53_ssl/files/chef_mlsa.bash b/providers/aws/route53_ssl/files/chef_mlsa.bash index fa504a2..fd479fa 100644 --- a/providers/aws/route53_ssl/files/chef_mlsa.bash +++ b/providers/aws/route53_ssl/files/chef_mlsa.bash @@ -4,12 +4,12 @@ case ${1,,} in 1) exit 0 ;; - false) echo "Please set acept_license = \"true\" in terraform.tfvars" + false) echo "Please set accept_license = \"true\" in terraform.tfvars" exit 1 ;; - 0) echo "Please set acept_license = \"true\" in terraform.tfvars" + 0) echo "Please set accept_license = \"true\" in terraform.tfvars" exit 1 ;; - *) echo "Please set acept_license = \"true\" in terraform.tfvars" + *) echo "Please set accept_license = \"true\" in terraform.tfvars" exit 1 ;; esac