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
# Gets latest aws linux ami published by amazon | |
# Example use with an optional var: | |
# ${upper(var.ami) == "NONE" ? data.aws_ami.default.id : var.ami} | |
data "aws_ami" "default" { | |
most_recent = true | |
filter { | |
name = "name" | |
values = ["amzn-ami-*-x86_64-gp2"] | |
} | |
filter { |
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
<!DOCTYPE html> | |
<!--[if lte IE 6]><html class="preIE7 preIE8 preIE9"><![endif]--> | |
<!--[if IE 7]><html class="preIE8 preIE9"><![endif]--> | |
<!--[if IE 8]><html class="preIE9"><![endif]--> | |
<!--[if gte IE 9]><!--><html><!--<![endif]--> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<meta name="viewport" content="width=device-width,initial-scale=1"> | |
<title>title</title> |
NewerOlder