Checking in vendor folder for ease of using go get.

This commit is contained in:
Renan DelValle 2018-10-23 23:32:59 -07:00
parent 7a1251853b
commit cdb4b5a1d0
No known key found for this signature in database
GPG key ID: C240AD6D6F443EC9
3554 changed files with 1270116 additions and 0 deletions

View file

@ -0,0 +1,5 @@
resource = [{
foo = [{
bar = {}
}]
}]

View file

@ -0,0 +1,2 @@
foo = "bar"
bar = "${file("bing/bong.txt")}"

View file

@ -0,0 +1,4 @@
{
"foo": "bar",
"bar": "${file(\"bing/bong.txt\")}"
}

View file

@ -0,0 +1 @@
count = "3"

View file

@ -0,0 +1,3 @@
foo="bar"
bar="${file("bing/bong.txt")}"
foo-bar="baz"

View file

@ -0,0 +1,2 @@
environment = "aws" {
}

View file

@ -0,0 +1,15 @@
key "" {
policy = "read"
}
key "foo/" {
policy = "write"
}
key "foo/bar/" {
policy = "read"
}
key "foo/bar/baz" {
policy = "deny"
}

View file

@ -0,0 +1,19 @@
{
"key": {
"": {
"policy": "read"
},
"foo/": {
"policy": "write"
},
"foo/bar/": {
"policy": "read"
},
"foo/bar/baz": {
"policy": "deny"
}
}
}

View file

@ -0,0 +1,10 @@
variable "foo" {
default = "bar"
description = "bar"
}
variable "amis" {
default = {
east = "foo"
}
}

View file

@ -0,0 +1,14 @@
{
"variable": {
"foo": {
"default": "bar",
"description": "bar"
},
"amis": {
"default": {
"east": "foo"
}
}
}
}

View file

@ -0,0 +1 @@
resource "foo" {}

View file

@ -0,0 +1,6 @@
foo = "bar\"baz\\n"
bar = "new\nline"
qux = "back\\slash"
qax = "slash\\:colon"
nested = "${HH\\:mm\\:ss}"
nestedquotes = "${"\"stringwrappedinquotes\""}"

View file

@ -0,0 +1,5 @@
output {
one = "${replace(var.sub_domain, ".", "\\.")}"
two = "${replace(var.sub_domain, ".", "\\\\.")}"
many = "${replace(var.sub_domain, ".", "\\\\\\\\.")}"
}

View file

@ -0,0 +1,2 @@
foo = "bar"
Key = 7

View file

@ -0,0 +1,2 @@
a = 1.02
b = 2

View file

@ -0,0 +1,4 @@
{
"a": 1.02,
"b": 2
}

Binary file not shown.

View file

@ -0,0 +1,3 @@
{
"default": "${replace(\"europe-west\", \"-\", \" \")}"
}

View file

@ -0,0 +1,2 @@
foo = [["foo"], ["bar"]]

View file

@ -0,0 +1,4 @@
foo = [
{somekey1 = "someval1"},
{somekey2 = "someval2", someextrakey = "someextraval"},
]

View file

@ -0,0 +1,4 @@
foo = <<EOF
bar
baz
EOF

View file

@ -0,0 +1,3 @@
{
"foo": "bar\nbaz"
}

View file

@ -0,0 +1,4 @@
foo = <EOF
bar
baz
EOF

View file

@ -0,0 +1,4 @@
foo = <<-EOF
bar
baz
EOF

View file

@ -0,0 +1,2 @@
multiline_literal = "hello
world"

View file

@ -0,0 +1,2 @@
multiline_literal_with_hil = "${hello
world}"

View file

@ -0,0 +1,5 @@
foo = <<EOF
bar
baz
EOF
key = "value"

View file

@ -0,0 +1,5 @@
foo = <<-EOF
baz
bar
foo
EOF

View file

@ -0,0 +1 @@
foo = <<

View file

@ -0,0 +1,5 @@
/*
foo = "bar/*"
*/
bar = "value"

View file

@ -0,0 +1,5 @@
resource "aws" "web" {
provider = "aws" {
region = "us-west-2"
}
}

View file

@ -0,0 +1,7 @@
{
"module": {
"app": {
"foo": null
}
}
}

View file

@ -0,0 +1,15 @@
{
"resource": {
"aws_instance": {
"db": {
"vpc": "foo",
"provisioner": [{
"file": {
"source": "foo",
"destination": "bar"
}
}]
}
}
}
}

View file

@ -0,0 +1,6 @@
path {
policy = "write"
permissions = {
"bool" = [false]
}
}

View file

@ -0,0 +1,6 @@
a = 1e-10
b = 1e+10
c = 1e10
d = 1.2e-10
e = 1.2e+10
f = 1.2e10

View file

@ -0,0 +1,8 @@
{
"a": 1e-10,
"b": 1e+10,
"c": 1e10,
"d": 1.2e-10,
"e": 1.2e+10,
"f": 1.2e10
}

View file

@ -0,0 +1,7 @@
service "my-service-0" {
key = "value"
}
service "my-service-1" {
key = "value"
}

View file

@ -0,0 +1,5 @@
// This is a test structure for the lexer
foo "baz" {
key = 7
foo = "bar"
}

View file

@ -0,0 +1,8 @@
{
"foo": [{
"baz": [{
"key": 7,
"foo": "bar"
}]
}]
}

View file

@ -0,0 +1,9 @@
// This is a test structure for the lexer
foo "baz" {
key = 7
foo = "bar"
}
foo {
key = 7
}

View file

@ -0,0 +1,10 @@
{
"foo": [{
"baz": {
"key": 7,
"foo": "bar"
}
}, {
"key": 7
}]
}

View file

@ -0,0 +1,8 @@
{
"foo": {
"baz": {
"key": 7,
"foo": "bar"
}
}
}

View file

@ -0,0 +1,7 @@
foo {
key = 7
}
foo {
foo = "bar"
}

View file

@ -0,0 +1,6 @@
foo {
key = 7
}
foo {
key = 12
}

View file

@ -0,0 +1,7 @@
{
"foo": [{
"key": 7
}, {
"key": 12
}]
}

View file

@ -0,0 +1,16 @@
{
"bar": {
"foo": {
"name": "terraform_example",
"ingress": [
{
"from_port": 22
},
{
"from_port": 80
}
]
}
}
}

View file

@ -0,0 +1,3 @@
{
"foo": []
}

View file

@ -0,0 +1,7 @@
foo "baz" {
key = 7
}
foo "bar" {
key = 12
}

View file

@ -0,0 +1,11 @@
{
"foo": {
"baz": {
"key": 7
},
"bar": {
"key": 12
}
}
}

View file

@ -0,0 +1,5 @@
name = "terraform-test-app"
config_vars {
FOO = "bar"
}

View file

@ -0,0 +1,6 @@
{
"name": "terraform-test-app",
"config_vars": {
"FOO": "bar"
}
}

View file

@ -0,0 +1,5 @@
{
"variable": {
"whatever": "abc123"
}
}

View file

@ -0,0 +1,3 @@
regularvar = "Should work"
map.key1 = "Value"
map.key2 = "Other value"

View file

@ -0,0 +1,2 @@
/*
Foo

View file

@ -0,0 +1,2 @@
foo "baz" {
bar = "baz"