Checking in vendor folder for ease of using go get.
This commit is contained in:
parent
7a1251853b
commit
cdb4b5a1d0
3554 changed files with 1270116 additions and 0 deletions
5
vendor/github.com/hashicorp/hcl/test-fixtures/assign_deep.hcl
generated
vendored
Normal file
5
vendor/github.com/hashicorp/hcl/test-fixtures/assign_deep.hcl
generated
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
resource = [{
|
||||
foo = [{
|
||||
bar = {}
|
||||
}]
|
||||
}]
|
2
vendor/github.com/hashicorp/hcl/test-fixtures/basic.hcl
generated
vendored
Normal file
2
vendor/github.com/hashicorp/hcl/test-fixtures/basic.hcl
generated
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
foo = "bar"
|
||||
bar = "${file("bing/bong.txt")}"
|
4
vendor/github.com/hashicorp/hcl/test-fixtures/basic.json
generated
vendored
Normal file
4
vendor/github.com/hashicorp/hcl/test-fixtures/basic.json
generated
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"foo": "bar",
|
||||
"bar": "${file(\"bing/bong.txt\")}"
|
||||
}
|
1
vendor/github.com/hashicorp/hcl/test-fixtures/basic_int_string.hcl
generated
vendored
Normal file
1
vendor/github.com/hashicorp/hcl/test-fixtures/basic_int_string.hcl
generated
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
count = "3"
|
3
vendor/github.com/hashicorp/hcl/test-fixtures/basic_squish.hcl
generated
vendored
Normal file
3
vendor/github.com/hashicorp/hcl/test-fixtures/basic_squish.hcl
generated
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
foo="bar"
|
||||
bar="${file("bing/bong.txt")}"
|
||||
foo-bar="baz"
|
2
vendor/github.com/hashicorp/hcl/test-fixtures/block_assign.hcl
generated
vendored
Normal file
2
vendor/github.com/hashicorp/hcl/test-fixtures/block_assign.hcl
generated
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
environment = "aws" {
|
||||
}
|
15
vendor/github.com/hashicorp/hcl/test-fixtures/decode_policy.hcl
generated
vendored
Normal file
15
vendor/github.com/hashicorp/hcl/test-fixtures/decode_policy.hcl
generated
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
key "" {
|
||||
policy = "read"
|
||||
}
|
||||
|
||||
key "foo/" {
|
||||
policy = "write"
|
||||
}
|
||||
|
||||
key "foo/bar/" {
|
||||
policy = "read"
|
||||
}
|
||||
|
||||
key "foo/bar/baz" {
|
||||
policy = "deny"
|
||||
}
|
19
vendor/github.com/hashicorp/hcl/test-fixtures/decode_policy.json
generated
vendored
Normal file
19
vendor/github.com/hashicorp/hcl/test-fixtures/decode_policy.json
generated
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"key": {
|
||||
"": {
|
||||
"policy": "read"
|
||||
},
|
||||
|
||||
"foo/": {
|
||||
"policy": "write"
|
||||
},
|
||||
|
||||
"foo/bar/": {
|
||||
"policy": "read"
|
||||
},
|
||||
|
||||
"foo/bar/baz": {
|
||||
"policy": "deny"
|
||||
}
|
||||
}
|
||||
}
|
10
vendor/github.com/hashicorp/hcl/test-fixtures/decode_tf_variable.hcl
generated
vendored
Normal file
10
vendor/github.com/hashicorp/hcl/test-fixtures/decode_tf_variable.hcl
generated
vendored
Normal file
|
@ -0,0 +1,10 @@
|
|||
variable "foo" {
|
||||
default = "bar"
|
||||
description = "bar"
|
||||
}
|
||||
|
||||
variable "amis" {
|
||||
default = {
|
||||
east = "foo"
|
||||
}
|
||||
}
|
14
vendor/github.com/hashicorp/hcl/test-fixtures/decode_tf_variable.json
generated
vendored
Normal file
14
vendor/github.com/hashicorp/hcl/test-fixtures/decode_tf_variable.json
generated
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"variable": {
|
||||
"foo": {
|
||||
"default": "bar",
|
||||
"description": "bar"
|
||||
},
|
||||
|
||||
"amis": {
|
||||
"default": {
|
||||
"east": "foo"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
1
vendor/github.com/hashicorp/hcl/test-fixtures/empty.hcl
generated
vendored
Normal file
1
vendor/github.com/hashicorp/hcl/test-fixtures/empty.hcl
generated
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
resource "foo" {}
|
6
vendor/github.com/hashicorp/hcl/test-fixtures/escape.hcl
generated
vendored
Normal file
6
vendor/github.com/hashicorp/hcl/test-fixtures/escape.hcl
generated
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
foo = "bar\"baz\\n"
|
||||
bar = "new\nline"
|
||||
qux = "back\\slash"
|
||||
qax = "slash\\:colon"
|
||||
nested = "${HH\\:mm\\:ss}"
|
||||
nestedquotes = "${"\"stringwrappedinquotes\""}"
|
5
vendor/github.com/hashicorp/hcl/test-fixtures/escape_backslash.hcl
generated
vendored
Normal file
5
vendor/github.com/hashicorp/hcl/test-fixtures/escape_backslash.hcl
generated
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
output {
|
||||
one = "${replace(var.sub_domain, ".", "\\.")}"
|
||||
two = "${replace(var.sub_domain, ".", "\\\\.")}"
|
||||
many = "${replace(var.sub_domain, ".", "\\\\\\\\.")}"
|
||||
}
|
2
vendor/github.com/hashicorp/hcl/test-fixtures/flat.hcl
generated
vendored
Normal file
2
vendor/github.com/hashicorp/hcl/test-fixtures/flat.hcl
generated
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
foo = "bar"
|
||||
Key = 7
|
2
vendor/github.com/hashicorp/hcl/test-fixtures/float.hcl
generated
vendored
Normal file
2
vendor/github.com/hashicorp/hcl/test-fixtures/float.hcl
generated
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
a = 1.02
|
||||
b = 2
|
4
vendor/github.com/hashicorp/hcl/test-fixtures/float.json
generated
vendored
Normal file
4
vendor/github.com/hashicorp/hcl/test-fixtures/float.json
generated
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"a": 1.02,
|
||||
"b": 2
|
||||
}
|
BIN
vendor/github.com/hashicorp/hcl/test-fixtures/git_crypt.hcl
generated
vendored
Normal file
BIN
vendor/github.com/hashicorp/hcl/test-fixtures/git_crypt.hcl
generated
vendored
Normal file
Binary file not shown.
3
vendor/github.com/hashicorp/hcl/test-fixtures/interpolate.json
generated
vendored
Normal file
3
vendor/github.com/hashicorp/hcl/test-fixtures/interpolate.json
generated
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"default": "${replace(\"europe-west\", \"-\", \" \")}"
|
||||
}
|
2
vendor/github.com/hashicorp/hcl/test-fixtures/list_of_lists.hcl
generated
vendored
Normal file
2
vendor/github.com/hashicorp/hcl/test-fixtures/list_of_lists.hcl
generated
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
foo = [["foo"], ["bar"]]
|
||||
|
4
vendor/github.com/hashicorp/hcl/test-fixtures/list_of_maps.hcl
generated
vendored
Normal file
4
vendor/github.com/hashicorp/hcl/test-fixtures/list_of_maps.hcl
generated
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
foo = [
|
||||
{somekey1 = "someval1"},
|
||||
{somekey2 = "someval2", someextrakey = "someextraval"},
|
||||
]
|
4
vendor/github.com/hashicorp/hcl/test-fixtures/multiline.hcl
generated
vendored
Normal file
4
vendor/github.com/hashicorp/hcl/test-fixtures/multiline.hcl
generated
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
foo = <<EOF
|
||||
bar
|
||||
baz
|
||||
EOF
|
3
vendor/github.com/hashicorp/hcl/test-fixtures/multiline.json
generated
vendored
Normal file
3
vendor/github.com/hashicorp/hcl/test-fixtures/multiline.json
generated
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"foo": "bar\nbaz"
|
||||
}
|
4
vendor/github.com/hashicorp/hcl/test-fixtures/multiline_bad.hcl
generated
vendored
Normal file
4
vendor/github.com/hashicorp/hcl/test-fixtures/multiline_bad.hcl
generated
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
foo = <EOF
|
||||
bar
|
||||
baz
|
||||
EOF
|
4
vendor/github.com/hashicorp/hcl/test-fixtures/multiline_indented.hcl
generated
vendored
Normal file
4
vendor/github.com/hashicorp/hcl/test-fixtures/multiline_indented.hcl
generated
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
foo = <<-EOF
|
||||
bar
|
||||
baz
|
||||
EOF
|
2
vendor/github.com/hashicorp/hcl/test-fixtures/multiline_literal.hcl
generated
vendored
Normal file
2
vendor/github.com/hashicorp/hcl/test-fixtures/multiline_literal.hcl
generated
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
multiline_literal = "hello
|
||||
world"
|
2
vendor/github.com/hashicorp/hcl/test-fixtures/multiline_literal_with_hil.hcl
generated
vendored
Normal file
2
vendor/github.com/hashicorp/hcl/test-fixtures/multiline_literal_with_hil.hcl
generated
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
multiline_literal_with_hil = "${hello
|
||||
world}"
|
5
vendor/github.com/hashicorp/hcl/test-fixtures/multiline_no_eof.hcl
generated
vendored
Normal file
5
vendor/github.com/hashicorp/hcl/test-fixtures/multiline_no_eof.hcl
generated
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
foo = <<EOF
|
||||
bar
|
||||
baz
|
||||
EOF
|
||||
key = "value"
|
5
vendor/github.com/hashicorp/hcl/test-fixtures/multiline_no_hanging_indent.hcl
generated
vendored
Normal file
5
vendor/github.com/hashicorp/hcl/test-fixtures/multiline_no_hanging_indent.hcl
generated
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
foo = <<-EOF
|
||||
baz
|
||||
bar
|
||||
foo
|
||||
EOF
|
1
vendor/github.com/hashicorp/hcl/test-fixtures/multiline_no_marker.hcl
generated
vendored
Normal file
1
vendor/github.com/hashicorp/hcl/test-fixtures/multiline_no_marker.hcl
generated
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
foo = <<
|
5
vendor/github.com/hashicorp/hcl/test-fixtures/nested_block_comment.hcl
generated
vendored
Normal file
5
vendor/github.com/hashicorp/hcl/test-fixtures/nested_block_comment.hcl
generated
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
/*
|
||||
foo = "bar/*"
|
||||
*/
|
||||
|
||||
bar = "value"
|
5
vendor/github.com/hashicorp/hcl/test-fixtures/nested_provider_bad.hcl
generated
vendored
Normal file
5
vendor/github.com/hashicorp/hcl/test-fixtures/nested_provider_bad.hcl
generated
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
resource "aws" "web" {
|
||||
provider = "aws" {
|
||||
region = "us-west-2"
|
||||
}
|
||||
}
|
7
vendor/github.com/hashicorp/hcl/test-fixtures/null_strings.json
generated
vendored
Normal file
7
vendor/github.com/hashicorp/hcl/test-fixtures/null_strings.json
generated
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"module": {
|
||||
"app": {
|
||||
"foo": null
|
||||
}
|
||||
}
|
||||
}
|
15
vendor/github.com/hashicorp/hcl/test-fixtures/object_list.json
generated
vendored
Normal file
15
vendor/github.com/hashicorp/hcl/test-fixtures/object_list.json
generated
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"resource": {
|
||||
"aws_instance": {
|
||||
"db": {
|
||||
"vpc": "foo",
|
||||
"provisioner": [{
|
||||
"file": {
|
||||
"source": "foo",
|
||||
"destination": "bar"
|
||||
}
|
||||
}]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
6
vendor/github.com/hashicorp/hcl/test-fixtures/object_with_bool.hcl
generated
vendored
Normal file
6
vendor/github.com/hashicorp/hcl/test-fixtures/object_with_bool.hcl
generated
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
path {
|
||||
policy = "write"
|
||||
permissions = {
|
||||
"bool" = [false]
|
||||
}
|
||||
}
|
6
vendor/github.com/hashicorp/hcl/test-fixtures/scientific.hcl
generated
vendored
Normal file
6
vendor/github.com/hashicorp/hcl/test-fixtures/scientific.hcl
generated
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
a = 1e-10
|
||||
b = 1e+10
|
||||
c = 1e10
|
||||
d = 1.2e-10
|
||||
e = 1.2e+10
|
||||
f = 1.2e10
|
8
vendor/github.com/hashicorp/hcl/test-fixtures/scientific.json
generated
vendored
Normal file
8
vendor/github.com/hashicorp/hcl/test-fixtures/scientific.json
generated
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"a": 1e-10,
|
||||
"b": 1e+10,
|
||||
"c": 1e10,
|
||||
"d": 1.2e-10,
|
||||
"e": 1.2e+10,
|
||||
"f": 1.2e10
|
||||
}
|
7
vendor/github.com/hashicorp/hcl/test-fixtures/slice_expand.hcl
generated
vendored
Normal file
7
vendor/github.com/hashicorp/hcl/test-fixtures/slice_expand.hcl
generated
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
service "my-service-0" {
|
||||
key = "value"
|
||||
}
|
||||
|
||||
service "my-service-1" {
|
||||
key = "value"
|
||||
}
|
5
vendor/github.com/hashicorp/hcl/test-fixtures/structure.hcl
generated
vendored
Normal file
5
vendor/github.com/hashicorp/hcl/test-fixtures/structure.hcl
generated
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
// This is a test structure for the lexer
|
||||
foo "baz" {
|
||||
key = 7
|
||||
foo = "bar"
|
||||
}
|
8
vendor/github.com/hashicorp/hcl/test-fixtures/structure.json
generated
vendored
Normal file
8
vendor/github.com/hashicorp/hcl/test-fixtures/structure.json
generated
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"foo": [{
|
||||
"baz": [{
|
||||
"key": 7,
|
||||
"foo": "bar"
|
||||
}]
|
||||
}]
|
||||
}
|
9
vendor/github.com/hashicorp/hcl/test-fixtures/structure2.hcl
generated
vendored
Normal file
9
vendor/github.com/hashicorp/hcl/test-fixtures/structure2.hcl
generated
vendored
Normal file
|
@ -0,0 +1,9 @@
|
|||
// This is a test structure for the lexer
|
||||
foo "baz" {
|
||||
key = 7
|
||||
foo = "bar"
|
||||
}
|
||||
|
||||
foo {
|
||||
key = 7
|
||||
}
|
10
vendor/github.com/hashicorp/hcl/test-fixtures/structure2.json
generated
vendored
Normal file
10
vendor/github.com/hashicorp/hcl/test-fixtures/structure2.json
generated
vendored
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"foo": [{
|
||||
"baz": {
|
||||
"key": 7,
|
||||
"foo": "bar"
|
||||
}
|
||||
}, {
|
||||
"key": 7
|
||||
}]
|
||||
}
|
8
vendor/github.com/hashicorp/hcl/test-fixtures/structure_flat.json
generated
vendored
Normal file
8
vendor/github.com/hashicorp/hcl/test-fixtures/structure_flat.json
generated
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"foo": {
|
||||
"baz": {
|
||||
"key": 7,
|
||||
"foo": "bar"
|
||||
}
|
||||
}
|
||||
}
|
7
vendor/github.com/hashicorp/hcl/test-fixtures/structure_flatmap.hcl
generated
vendored
Normal file
7
vendor/github.com/hashicorp/hcl/test-fixtures/structure_flatmap.hcl
generated
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
foo {
|
||||
key = 7
|
||||
}
|
||||
|
||||
foo {
|
||||
foo = "bar"
|
||||
}
|
6
vendor/github.com/hashicorp/hcl/test-fixtures/structure_list.hcl
generated
vendored
Normal file
6
vendor/github.com/hashicorp/hcl/test-fixtures/structure_list.hcl
generated
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
foo {
|
||||
key = 7
|
||||
}
|
||||
foo {
|
||||
key = 12
|
||||
}
|
7
vendor/github.com/hashicorp/hcl/test-fixtures/structure_list.json
generated
vendored
Normal file
7
vendor/github.com/hashicorp/hcl/test-fixtures/structure_list.json
generated
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"foo": [{
|
||||
"key": 7
|
||||
}, {
|
||||
"key": 12
|
||||
}]
|
||||
}
|
16
vendor/github.com/hashicorp/hcl/test-fixtures/structure_list_deep.json
generated
vendored
Normal file
16
vendor/github.com/hashicorp/hcl/test-fixtures/structure_list_deep.json
generated
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"bar": {
|
||||
"foo": {
|
||||
"name": "terraform_example",
|
||||
"ingress": [
|
||||
{
|
||||
"from_port": 22
|
||||
},
|
||||
{
|
||||
"from_port": 80
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
3
vendor/github.com/hashicorp/hcl/test-fixtures/structure_list_empty.json
generated
vendored
Normal file
3
vendor/github.com/hashicorp/hcl/test-fixtures/structure_list_empty.json
generated
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"foo": []
|
||||
}
|
7
vendor/github.com/hashicorp/hcl/test-fixtures/structure_multi.hcl
generated
vendored
Normal file
7
vendor/github.com/hashicorp/hcl/test-fixtures/structure_multi.hcl
generated
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
foo "baz" {
|
||||
key = 7
|
||||
}
|
||||
|
||||
foo "bar" {
|
||||
key = 12
|
||||
}
|
11
vendor/github.com/hashicorp/hcl/test-fixtures/structure_multi.json
generated
vendored
Normal file
11
vendor/github.com/hashicorp/hcl/test-fixtures/structure_multi.json
generated
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"foo": {
|
||||
"baz": {
|
||||
"key": 7
|
||||
},
|
||||
|
||||
"bar": {
|
||||
"key": 12
|
||||
}
|
||||
}
|
||||
}
|
5
vendor/github.com/hashicorp/hcl/test-fixtures/terraform_heroku.hcl
generated
vendored
Normal file
5
vendor/github.com/hashicorp/hcl/test-fixtures/terraform_heroku.hcl
generated
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
name = "terraform-test-app"
|
||||
|
||||
config_vars {
|
||||
FOO = "bar"
|
||||
}
|
6
vendor/github.com/hashicorp/hcl/test-fixtures/terraform_heroku.json
generated
vendored
Normal file
6
vendor/github.com/hashicorp/hcl/test-fixtures/terraform_heroku.json
generated
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"name": "terraform-test-app",
|
||||
"config_vars": {
|
||||
"FOO": "bar"
|
||||
}
|
||||
}
|
5
vendor/github.com/hashicorp/hcl/test-fixtures/terraform_variable_invalid.json
generated
vendored
Normal file
5
vendor/github.com/hashicorp/hcl/test-fixtures/terraform_variable_invalid.json
generated
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"variable": {
|
||||
"whatever": "abc123"
|
||||
}
|
||||
}
|
3
vendor/github.com/hashicorp/hcl/test-fixtures/tfvars.hcl
generated
vendored
Normal file
3
vendor/github.com/hashicorp/hcl/test-fixtures/tfvars.hcl
generated
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
regularvar = "Should work"
|
||||
map.key1 = "Value"
|
||||
map.key2 = "Other value"
|
2
vendor/github.com/hashicorp/hcl/test-fixtures/unterminated_block_comment.hcl
generated
vendored
Normal file
2
vendor/github.com/hashicorp/hcl/test-fixtures/unterminated_block_comment.hcl
generated
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
/*
|
||||
Foo
|
2
vendor/github.com/hashicorp/hcl/test-fixtures/unterminated_brace.hcl
generated
vendored
Normal file
2
vendor/github.com/hashicorp/hcl/test-fixtures/unterminated_brace.hcl
generated
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
foo "baz" {
|
||||
bar = "baz"
|
Loading…
Add table
Add a link
Reference in a new issue