mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-05-08 22:30:41 +00:00
Update Go AWS SDK to the latest version
This commit is contained in:
committed by
Andrey Smirnov
parent
d08be990ef
commit
94a72b23ff
+1
@@ -0,0 +1 @@
|
||||
[[ foo ]
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
[ default
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
[ default #]
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
[arn:aws:sts::1234:assumed-role/My-Role/session-name]
|
||||
region = "foo-region"
|
||||
arn = arn:aws:sts::1234:assumed-role/My-Role/session-name
|
||||
Generated
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"arn:aws:sts::1234:assumed-role/My-Role/session-name": {
|
||||
"region": "foo-region",
|
||||
"arn": "arn:aws:sts::1234:assumed-role/My-Role/session-name"
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
[ foo ]
|
||||
bar = "one","two", "three"
|
||||
baz = 123
|
||||
qux =
|
||||
moo = 123,456
|
||||
cow = 1
|
||||
milk = 123,456
|
||||
zed = "zee"
|
||||
Generated
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"foo": {
|
||||
"baz": 123,
|
||||
"zed": "zee"
|
||||
}
|
||||
}
|
||||
Generated
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
[ default ]
|
||||
binary=0b1001
|
||||
octal=0o107
|
||||
ten=12
|
||||
hex=0xAFB1
|
||||
hex2=0xafb1
|
||||
Generated
Vendored
+9
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"default": {
|
||||
"binary": 9,
|
||||
"octal": 71,
|
||||
"ten": 12,
|
||||
"hex": 44977,
|
||||
"hex2": 44977
|
||||
}
|
||||
}
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
# comment here
|
||||
[ default ]
|
||||
region = "foo-region" # another comment
|
||||
output = json # comment again
|
||||
Generated
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"default": {
|
||||
"region": "foo-region",
|
||||
"output": "json"
|
||||
}
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
[ default ]
|
||||
Generated
Vendored
+4
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"default": {
|
||||
}
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
[ default ]
|
||||
foo = "\"bar\""
|
||||
baz = "qux\n"
|
||||
Generated
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"default": {
|
||||
"foo": "\"bar\"",
|
||||
"baz": "qux\n"
|
||||
}
|
||||
}
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
[ default ]
|
||||
exponent = 1e4
|
||||
exponent_2 = 1E-4
|
||||
exponent_should_be_string = 0x1ob
|
||||
Generated
Vendored
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"default": {
|
||||
"exponent": 10000,
|
||||
"exponent_2": 0.0001,
|
||||
"exponent_should_be_string": "0x1ob"
|
||||
}
|
||||
}
|
||||
Generated
Vendored
+3
@@ -0,0 +1,3 @@
|
||||
foo=bar
|
||||
[default]
|
||||
foo=bar
|
||||
Generated
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"default": {
|
||||
"foo": "bar"
|
||||
}
|
||||
}
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
[default]
|
||||
large_number = 1234567890123456789012345678901234567890
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"default": {
|
||||
"large_number": "1234567890123456789012345678901234567890"
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
[foo-profile]
|
||||
aws_access_key_id = accesskey
|
||||
aws_secret_access_key = secret
|
||||
aws_session_token = token
|
||||
aws_security_token = sectoken
|
||||
x_principal_arn = arn:aws:sts::myarn
|
||||
x_security_token_expires = time
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"foo-profile": {
|
||||
"aws_access_key_id": "accesskey",
|
||||
"aws_secret_access_key": "secret",
|
||||
"aws_session_token": "token",
|
||||
"aws_security_token": "sectoken",
|
||||
"x_principal_arn": "arn:aws:sts::myarn",
|
||||
"x_security_token_expires": "time"
|
||||
}
|
||||
}
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
[default]
|
||||
123 = 456.456
|
||||
Generated
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"default": {
|
||||
"123": 456.456
|
||||
}
|
||||
}
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
[ profile foo ]
|
||||
bar = baz
|
||||
Generated
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"profile foo": {
|
||||
"bar": "baz"
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
[ default ]
|
||||
region = "foo-region"
|
||||
output = json
|
||||
|
||||
[ foo ]
|
||||
bar = baz
|
||||
[bar]
|
||||
baz=qux
|
||||
Generated
Vendored
+12
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"default": {
|
||||
"region": "foo-region",
|
||||
"output": "json"
|
||||
},
|
||||
"foo": {
|
||||
"bar": "baz"
|
||||
},
|
||||
"bar": {
|
||||
"baz": "qux"
|
||||
}
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
[ default ]
|
||||
region = "foo-region"
|
||||
output = json
|
||||
foo = bar = baz
|
||||
bar = baz qux
|
||||
Generated
Vendored
+8
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"default": {
|
||||
"output": "json",
|
||||
"region": "foo-region",
|
||||
"foo": "bar = baz",
|
||||
"bar": "baz qux"
|
||||
}
|
||||
}
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
[ hyphen-profile-name ]
|
||||
aws region = "foo-region"
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"hyphen-profile-name": {
|
||||
"aws region": "foo-region"
|
||||
}
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
[ ʃʉʍΡιξ ]
|
||||
ϰϪϧ = Ϯϴϖ
|
||||
ϝϧ = "ϟΞ΅"
|
||||
Generated
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"ʃʉʍΡιξ": {
|
||||
"ϰϪϧ": "Ϯϴϖ",
|
||||
"ϝϧ": "ϟΞ΅"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user