v0.4.9
v0.4.9
Description
This release is mostly focused on changing how comments look. Terraform output
is now automatically hidden if it's over 12 lines long:
Also the red and green highlighting for added and removed resources is fixed:
Diff: v0.4.8...v0.4.9
Features
- Terraform output over 12 lines is hidden in comment until expanded
terraform plan
output is highlighted correctly- Terraform is now executed with
-var atlantis_repo={repo name} -var atlantis_pull_num {pull num}
.
This will allow users to trace Atlantisterraform
executions in CloudTrail back to a specific
user and pull request if using assume role by creating a specific name for the session Terraform initiates.
provider "aws" {
assume_role {
role_arn = "arn:aws:iam::ACCOUNT_ID:role/ROLE_NAME"
session_name = "${var.atlantis_user}:${var.atlantis_repo}:${var.atlantis_pull_num}"
}
}
Bugfixes
- Run terraform with
-input=false
(#268).
Backwards Incompatibilities / Notes:
- We set two new Terraform variables:
atlantis_repo
andatlantis_pull_num
. If
you were using variables with those names in your code you will need to rename them
in your code
Docker
runatlantis/atlantis:v0.4.9