From 62d154b9f9b7f3a1eebb56d552809b115c26ef13 Mon Sep 17 00:00:00 2001 From: Martin Atkins Date: Fri, 25 Aug 2017 16:18:46 -0700 Subject: [PATCH] Start building with Terraform 1.9 This improves the testing and other tooling and thus allows us to fix some annoyances. (These fixes will follow in subsequent commits) --- .travis.yml | 3 +-- README.md | 2 +- Vagrantfile | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index d37048d92..505baa95b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,8 +2,7 @@ dist: trusty sudo: false language: go go: -- 1.8.3 -- 1.9rc1 +- 1.9 # add TF_CONSUL_TEST=1 to run consul tests # they were causing timouts in travis diff --git a/README.md b/README.md index a30ccff49..fb1e609d7 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ All documentation is available on the [Terraform website](http://www.terraform.i Developing Terraform -------------------- -If you wish to work on Terraform itself or any of its built-in providers, you'll first need [Go](http://www.golang.org) installed on your machine (version 1.8+ is *required*). Alternatively, you can use the Vagrantfile in the root of this repo to stand up a virtual machine with the appropriate dev tooling already set up for you. +If you wish to work on Terraform itself or any of its built-in providers, you'll first need [Go](http://www.golang.org) installed on your machine (version 1.9+ is *required*). Alternatively, you can use the Vagrantfile in the root of this repo to stand up a virtual machine with the appropriate dev tooling already set up for you. This repository contains only Terraform core, which includes the command line interface and the main graph engine. Providers are implemented as plugins that each have their own repository in [the `terraform-providers` organization](https://github.com/terraform-providers) on GitHub. Instructions for developing each provider are in the associated README file. For more information, see [the provider development overview](https://www.terraform.io/docs/plugins/provider.html). diff --git a/Vagrantfile b/Vagrantfile index 69d72df1b..d140efb91 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -5,7 +5,7 @@ VAGRANTFILE_API_VERSION = "2" # Software version variables -GOVERSION = "1.8.3" +GOVERSION = "1.9" UBUNTUVERSION = "16.04" # CPU and RAM can be adjusted depending on your system