This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set tabstop=2 softabstop=2 shiftwidth=2 | |
set expandtab //expands or replaces tab with 2 spaces | |
set number ruler //decent for line numbers with large yaml files | |
set autoindent smartindent | |
syntax enable // colour codes file | |
filetype plugin indent on //vim might know its a YAML this way |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
os: linux | |
dist: xenial | |
language: shell | |
before_install: | |
- sudo apt-get install -y gnupg software-properties-common curl ssh unzip git | |
- sudo curl -fsSL https://apt.releases.hashicorp.com/gpg | sudo apt-key add - | |
- sudo apt-add-repository "deb [arch=amd64] https://apt.releases.hashicorp.com $(lsb_release -cs) main" | |
- sudo apt-get update | |
- sudo apt-get install -y terraform |