Switch from Godep to go vendoring
This commit is contained in:
parent
6b37713bc0
commit
cd317761c5
1504 changed files with 263076 additions and 34441 deletions
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"
|
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" {}
|
1
vendor/github.com/hashicorp/hcl/test-fixtures/escape.hcl
generated
vendored
Normal file
1
vendor/github.com/hashicorp/hcl/test-fixtures/escape.hcl
generated
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
foo = "bar\"baz\\n"
|
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
|
1
vendor/github.com/hashicorp/hcl/test-fixtures/float.hcl
generated
vendored
Normal file
1
vendor/github.com/hashicorp/hcl/test-fixtures/float.hcl
generated
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
a = 1.02
|
3
vendor/github.com/hashicorp/hcl/test-fixtures/float.json
generated
vendored
Normal file
3
vendor/github.com/hashicorp/hcl/test-fixtures/float.json
generated
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"a": 1.02
|
||||
}
|
1
vendor/github.com/hashicorp/hcl/test-fixtures/interpolate_escape.hcl
generated
vendored
Normal file
1
vendor/github.com/hashicorp/hcl/test-fixtures/interpolate_escape.hcl
generated
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
foo="${file(\"bing/bong.txt\")}"
|
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
|
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"
|
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"
|
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/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
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
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"
|
||||
}
|
||||
}
|
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