2022-12-15 13:37:18 +00:00
# FrostFS S3 AuthMate
2021-08-18 19:18:49 +00:00
Authmate is a tool to create gateway AWS credentials. AWS users
2022-12-15 13:37:18 +00:00
are authenticated with access key IDs and secrets, while FrostFS users are
2022-04-13 16:56:58 +00:00
authenticated with key pairs. To complicate things further, we have S3 gateway
that usually acts on behalf of some user, but the user doesn't necessarily want to
2021-08-19 12:46:41 +00:00
give their keys to the gateway.
2021-08-18 19:18:49 +00:00
2022-12-15 13:37:18 +00:00
To solve this, we use FrostFS bearer tokens that are signed by the owner (FrostFS
"user") and that can implement any kind of policy for FrostFS requests allowed
2022-04-13 16:56:58 +00:00
to use this token. However, tokens can't be used as AWS credentials directly. Thus,
2022-12-15 13:37:18 +00:00
they're stored on FrostFS as regular objects, and an access key ID is just an
2022-04-13 16:56:58 +00:00
address of this object while a secret is generated randomly.
2021-08-18 19:18:49 +00:00
2022-12-15 13:37:18 +00:00
Tokens are not stored on FrostFS in plaintext, they're encrypted with a set of
2022-04-13 16:56:58 +00:00
gateway keys. So, in order for a gateway to be able to successfully extract bearer
2021-08-19 12:46:41 +00:00
token, the object needs to be stored in a container available for the gateway
to read, and it needs to be encrypted with this gateway's key (among others
2021-08-18 19:18:49 +00:00
potentially).
2022-04-27 07:15:46 +00:00
1. [Generation of wallet ](#generation-of-wallet )
2. [Issuance of a secret ](#issuance-of-a-secret )
1. [CLI parameters ](#cli-parameters )
2. [Bearer tokens ](#bearer-tokens )
3. [Session tokens ](#session-tokens )
4. [Containers policy ](#containers-policy )
2023-06-09 11:31:31 +00:00
3. [Obtainment of a secret ](#obtaining-credential-secrets )
2022-06-15 08:48:58 +00:00
4. [Generate presigned url ](#generate-presigned-url )
2023-06-26 07:48:09 +00:00
5. [Update secrets ](#update-secret )
2023-09-04 18:01:56 +00:00
6. [Exit codes ](#exit-codes )
2022-06-15 08:48:58 +00:00
2021-08-18 19:18:49 +00:00
## Generation of wallet
2022-04-06 14:31:32 +00:00
To generate a wallet for a gateway, run the following command:
2021-08-18 19:18:49 +00:00
2022-04-06 14:31:32 +00:00
```shell
2021-08-18 19:18:49 +00:00
$ ./neo-go wallet init -a -w wallet.json
Enter the name of the account > AccountTestName
2023-03-24 12:49:23 +00:00
Enter passphrase >
Confirm passphrase >
2021-08-18 19:18:49 +00:00
{
"version": "3.0",
"accounts": [
{
"address": "NhLQpDnerpviUWDF77j5qyjFgavCmasJ4p",
"key": "6PYUFyYpJ1JGyMrYV8NqeUFLKfpEVHsGGjCYtTDkjnKaSgYizRBZxVerte",
"label": "AccountTestName",
"contract": {
"script": "DCECXCsUZPwUyKHs6nAyyCvJ5s/vLwZkkVtWNC0zWzH8a9dBVuezJw==",
"parameters": [
{
"name": "parameter0",
"type": "Signature"
}
],
"deployed": false
},
"lock": false,
"isDefault": false
}
],
"scrypt": {
"n": 16384,
"r": 8,
"p": 8
},
"extra": {
"Tokens": null
}
}
2022-04-13 16:56:58 +00:00
wallet is successfully created, the file location is wallet.json
2021-08-18 19:18:49 +00:00
```
2022-04-13 16:56:58 +00:00
To get the public key from the wallet:
2022-04-06 14:31:32 +00:00
```shell
2021-08-18 19:18:49 +00:00
$ ./bin/neo-go wallet dump-keys -w wallet.json
NhLQpDnerpviUWDF77j5qyjFgavCmasJ4p (simple signature contract):
025c2b1464fc14c8a1ecea7032c82bc9e6cfef2f0664915b56342d335b31fc6bd7
```
## Issuance of a secret
2022-04-13 16:56:58 +00:00
To issue a secret means to create Bearer and, optionally, Session tokens and
2022-12-15 13:37:18 +00:00
put them as an object into a container on the FrostFS network.
2021-08-18 19:18:49 +00:00
2022-04-06 14:31:32 +00:00
### CLI parameters
**Required parameters:**
2022-04-13 16:56:58 +00:00
* `--wallet` is a path to a wallet `.json` file. You can provide a passphrase to decrypt
2023-03-24 12:49:23 +00:00
a wallet via environment variable `AUTHMATE_WALLET_PASSPHRASE` , or you will be asked to enter a passphrase
2022-04-06 14:31:32 +00:00
interactively. You can also specify an account address to use from a wallet using the `--address` parameter.
2022-12-15 13:37:18 +00:00
* `--peer` is an address of a FrostFS peer to connect to
2022-04-13 16:56:58 +00:00
* `--gate-public-key` is a public `secp256r1` 33-byte short key of a gate (use flags repeatedly for multiple gates). The tokens are encrypted
2022-04-06 14:31:32 +00:00
by a set of gateway keys, so you need to pass them as well.
2023-03-24 12:49:23 +00:00
You can issue a secret using the parameters above only. The tool will
2022-04-06 14:31:32 +00:00
1. create a new container
1. without a friendly name
2023-03-24 12:49:23 +00:00
2. with ACL `0x3c8c8cce` -- all operations are forbidden for `OTHERS` and `BEARER` user groups, except for `GET`
3. with policy `REP 2 IN X CBF 3 SELECT 2 FROM * AS X`
2. put bearer and session tokens with default rules (details in [Bearer tokens ](#Bearer tokens ) and
2022-04-06 14:31:32 +00:00
[Session tokens ](#Session tokens ))
E.g.:
```shell
2022-12-15 13:37:18 +00:00
$ frostfs-s3-authmate issue-secret --wallet wallet.json \
2022-04-06 14:31:32 +00:00
--peer 192.168.130.71:8080 \
--gate-public-key 0313b1ac3a8076e155a7e797b24f0b650cccad5941ea59d7cfd51a024a8b2a06bf\
--gate-public-key 0317585fa8274f7afdf1fc5f2a2e7bece549d5175c4e5182e37924f30229aef967
2023-03-24 12:49:23 +00:00
Enter password for wallet.json >
2022-04-06 14:31:32 +00:00
{
"access_key_id": "5g933dyLEkXbbAspouhPPTiyLZRg4axBW1axSPD87eVT0AiXsH4AjYy1iTJ4C1WExzjBrSobJsQFWEyKLREe5sQYM",
2023-06-13 09:35:53 +00:00
"initial_access_key_id": "5g933dyLEkXbbAspouhPPTiyLZRg4axBW1axSPD87eVT0AiXsH4AjYy1iTJ4C1WExzjBrSobJsQFWEyKLREe5sQYM",
2022-04-06 14:31:32 +00:00
"secret_access_key": "438bbd8243060e1e1c9dd4821756914a6e872ce29bf203b68f81b140ac91231c",
"owner_private_key": "274fdd6e71fc6a6b8fe77bec500254115d66d6d17347d7db0880d2eb80afc72a",
"container_id":"5g933dyLEkXbbAspouhPPTiyLZRg4axBW1axSPD87eVT"
}
```
`access_key_id` and `secret_access_key` are AWS credentials that you can use with any S3 client.
2021-08-19 09:55:01 +00:00
2023-06-13 09:35:53 +00:00
`initial_access_key_id` contains the first credentials in the chain of credentials versions
(can be useful when you update your credentials).
2022-12-15 13:37:18 +00:00
`access_key_id` consists of Base58 encoded containerID(cid) and objectID(oid) stored on the FrostFS network and containing
2022-04-06 14:31:32 +00:00
the secret. Format of `access_key_id` : `%cid0%oid` , where 0(zero) is a delimiter.
2021-08-19 09:55:01 +00:00
2022-04-06 14:31:32 +00:00
**Optional parameters:**
* `--container-id` - you can put the tokens into an existing container, but this way is ** *not recommended***.
* `--container-friendly-name` -- name of a container with tokens, by default container will not have a friendly name
* `--container-placement-policy` - placement policy of auth container to put the secret into. Default value is
`REP 2 IN X CBF 3 SELECT 2 FROM * AS X`
2023-03-24 12:49:23 +00:00
* `--lifetime` -- lifetime of tokens. For example 50h30m (note: max time unit is an hour so to set a day you should use
2022-04-06 14:31:32 +00:00
24h). Default value is `720h` (30 days). It will be ceil rounded to the nearest amount of epoch
2023-03-24 12:49:23 +00:00
* `--aws-cli-credentials` - path to the aws cli credentials file, where authmate will write `access_key_id` and
2022-04-06 14:31:32 +00:00
`secret_access_key` to
2023-06-13 09:35:53 +00:00
* `--access-key-id` -- credentials that you want to update (e.g. to add more gates that can use your creds)
without changing values of `aws_access_key_id` and `aws_secret_access_key` . If you want to update credential you MUST
provide also secret key using `AUTHMATE_SECRET_ACCESS_KEY` env variable.
2021-08-18 19:18:49 +00:00
2022-04-06 14:31:32 +00:00
### Bearer tokens
2021-08-18 19:18:49 +00:00
2022-04-13 16:56:58 +00:00
Creation of bearer tokens is mandatory.
2021-08-18 19:18:49 +00:00
2022-10-25 09:30:18 +00:00
By default, bearer token will be created with `impersonate` flag and won't have eACL table. It means that gate which will use such token
2023-06-01 13:47:29 +00:00
to interact with node can have access to your private containers or to containers in which eACL grants access to you
2022-10-25 09:30:18 +00:00
by public key.
2023-06-01 13:47:29 +00:00
Rules for a bearer token can be set via parameter `--bearer-rules` (json-string and file path allowed).
2022-10-25 09:30:18 +00:00
But you must provide `--disable-impersonate` flag:
2022-04-06 14:31:32 +00:00
```shell
2022-12-15 13:37:18 +00:00
$ frostfs-s3-authmate issue-secret --wallet wallet.json \
2022-04-06 14:31:32 +00:00
--peer 192.168.130.71:8080 \
--gate-public-key 0313b1ac3a8076e155a7e797b24f0b650cccad5941ea59d7cfd51a024a8b2a06bf \
2022-10-25 09:30:18 +00:00
--bearer-rules bearer-rules.json \
--disable-impersonate
2021-08-18 19:18:49 +00:00
```
2022-04-06 14:31:32 +00:00
where content of `bearer-rules.json` :
```json
{
"records": [
{"operation": "PUT", "action": "ALLOW", "filters": [], "targets": [{"role": "OTHERS", "keys": []}]},
{"operation": "GET", "action": "ALLOW", "filters": [], "targets": [{"role": "OTHERS", "keys": []}]},
{"operation": "HEAD", "action": "ALLOW", "filters": [], "targets": [{"role": "OTHERS", "keys": []}]},
{"operation": "DELETE", "action": "ALLOW", "filters": [], "targets": [{"role": "OTHERS", "keys": []}]},
{"operation": "SEARCH", "action": "ALLOW", "filters": [], "targets": [{"role": "OTHERS", "keys": []}]},
{"operation": "GETRANGE", "action": "ALLOW", "filters": [], "targets": [{"role": "OTHERS", "keys": []}]},
{"operation": "GETRANGEHASH", "action": "ALLOW", "filters": [], "targets": [{"role": "OTHERS", "keys": []}]}
]
}
```
2022-04-27 07:52:03 +00:00
2023-03-24 12:49:23 +00:00
**Note:** such rules allow all operations for all users (the same behavior when records are empty).
2022-04-27 07:52:03 +00:00
To restrict access you MUST provide records with `DENY` action. That's why we recommend always place such records
at the end of records (see default rules below) to prevent undesirable access violation.
Since the rules are applied from top to bottom, they do not override what was previously allowed.
2022-04-06 14:31:32 +00:00
If bearer rules are not set, a token will be auto-generated with a value:
```json
2021-08-18 19:18:49 +00:00
{
"version": {
2022-04-27 07:52:03 +00:00
"major": 2,
"minor": 11
2021-08-18 19:18:49 +00:00
},
"containerID": {
2022-04-27 07:52:03 +00:00
"value": null
2021-08-18 19:18:49 +00:00
},
"records": [
2022-04-27 07:52:03 +00:00
{"operation": "GET", "action": "ALLOW", "filters": [], "targets": [{"role": "OTHERS", "keys": []}]},
{"operation": "GET", "action": "DENY", "filters": [], "targets": [{"role": "OTHERS", "keys": []}]},
{"operation": "HEAD", "action": "DENY", "filters": [], "targets": [{"role": "OTHERS", "keys": []}]},
{"operation": "PUT", "action": "DENY", "filters": [], "targets": [{"role": "OTHERS", "keys": []}]},
{"operation": "DELETE", "action": "DENY", "filters": [], "targets": [{"role": "OTHERS", "keys": []}]},
{"operation": "SEARCH", "action": "DENY", "filters": [], "targets": [{"role": "OTHERS", "keys": []}]},
{"operation": "GETRANGE", "action": "DENY", "filters": [], "targets": [{"role": "OTHERS", "keys": []}]},
{"operation": "GETRANGEHASH", "action": "DENY", "filters": [], "targets": [{"role": "OTHERS", "keys": []}]}
2021-08-18 19:18:49 +00:00
]
}
```
2022-04-06 14:31:32 +00:00
### Session tokens
2022-01-31 18:40:00 +00:00
2023-03-24 12:49:23 +00:00
With a session token, there are 3 options:
2022-04-14 15:09:57 +00:00
1. append `--session-tokens` parameter with your custom rules in json format (as a string or file path). E.g.:
2022-04-06 14:31:32 +00:00
```shell
2022-12-15 13:37:18 +00:00
$ frostfs-s3-authmate issue-secret --wallet wallet.json \
2022-04-06 14:31:32 +00:00
--peer 192.168.130.71:8080 \
--gate-public-key 0313b1ac3a8076e155a7e797b24f0b650cccad5941ea59d7cfd51a024a8b2a06bf \
2022-04-14 15:09:57 +00:00
--session-tokens session.json
2021-08-18 19:18:49 +00:00
```
2022-04-06 14:31:32 +00:00
where content of `session.json` :
```json
2022-01-26 09:14:41 +00:00
[
{
2021-08-18 19:18:49 +00:00
"verb": "PUT",
"containerID": null
2022-01-31 10:50:41 +00:00
},
{
"verb": "DELETE",
"containerID": null
},
{
"verb": "SETEACL",
"containerID": null
2022-04-06 14:31:32 +00:00
}
2022-01-26 09:14:41 +00:00
]
2021-08-18 19:18:49 +00:00
```
2022-05-04 12:29:11 +00:00
Available `verb` values: `PUT` , `DELETE` , `SETEACL` .
If `containerID` is `null` or omitted, then session token rule will be applied
to all containers. Otherwise, specify `containerID` value in human-redabale
format (base58 encoded string).
2023-03-24 12:49:23 +00:00
> **_NB!_** To create buckets in FrostFS it's necessary to have session tokens with `PUT` and `SETEACL` permissions, that's why
the authmate creates a `SETEACL` session token automatically in case when a user specified the token rule with `PUT` and
2022-04-06 14:31:32 +00:00
forgot about the rule with `SETEACL` .
2022-04-14 15:09:57 +00:00
2. append `--session-tokens` parameter with the value `none` -- no session token will be created
2022-04-06 14:31:32 +00:00
3. skip the parameter, and `authmate` will create session tokens with default rules (the same as in `session.json`
in example above)
### Containers policy
2023-03-24 12:49:23 +00:00
Rules for mapping of `LocationConstraint` ([aws spec](https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucket.html#API_CreateBucket_RequestBody))
2023-03-07 14:38:08 +00:00
to `PlacementPolicy`
2022-04-06 14:31:32 +00:00
can be set via parameter `--container-policy` (json-string and file path allowed):
```json
2021-08-18 19:18:49 +00:00
{
"rep-3": "REP 3",
"complex": "REP 1 IN X CBF 1 SELECT 1 FROM * AS X",
"example-json-policy": "{\"replicas\":[{\"count\":3,\"selector\":\"SelASD0\"}],\"container_backup_factor\":3,\"selectors\":[{\"name\":\"SelASD0\",\"count\":3,\"filter\":\"*\"}],\"filters\":[]}"
}
```
2023-06-09 11:31:31 +00:00
## Obtaining credential secrets
2021-08-18 19:18:49 +00:00
2023-06-09 11:31:31 +00:00
You can get a secret access key and bearer token associated with an access key ID by obtaining a
2023-03-24 12:49:23 +00:00
secret stored on the FrostFS network. Here is an example of providing one password (for `wallet.json` ) via env variable
2021-08-19 12:46:41 +00:00
and the other (for `gate-wallet.json` ) interactively:
2021-08-18 19:18:49 +00:00
2022-04-06 14:31:32 +00:00
```shell
$ AUTHMATE_WALLET_PASSPHRASE=some-pwd \
2022-12-15 13:37:18 +00:00
frostfs-s3-authmate obtain-secret --wallet wallet.json \
2022-04-06 14:31:32 +00:00
--peer 192.168.130.71:8080 \
--gate-wallet gate-wallet.json \
--access-key-id 5g933dyLEkXbbAspouhPPTiyLZRg4axBW1axSPD87eVT0AiXsH4AjYy1iTJ4C1WExzjBrSobJsQFWEyKLREe5sQYM
2021-08-18 19:18:49 +00:00
Enter password for gate-wallet.json >
{
2023-06-09 11:31:31 +00:00
"bearer_token": {
"body": {
"eaclTable": null,
"ownerID": {
"value": "Naq5pfYuroaGE7h9o5iQsPR/1aRe5gmWrg=="
},
"lifetime": {
"exp": "10813",
"nbf": "13",
"iat": "13"
},
"allowImpersonate": true
},
"signature": {
"key": "Axpsb7vfAso1F0X6hrm6WpRS14WsT3/Ct1SMoqRsT89K",
"signature": "BMIOqcNEwTughI26ivFw7vnGyzhWip8NsgSYTTf21aVkv0AH7bgE9R91gglYgS6tGNVcWZMTisYCJCT3OEQ9lkw=",
"scheme": "ECDSA_SHA512"
}
},
2021-08-18 19:18:49 +00:00
"secret_access_key": "438bbd8243060e1e1c9dd4821756914a6e872ce29bf203b68f81b140ac91231c"
}
```
2022-06-15 08:48:58 +00:00
## Generate presigned URL
2023-03-24 12:49:23 +00:00
You can generate [presigned url ](https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-presigned-url.html )
using AWS credentials from `~/.aws/credentials` (you can specify profile using the `--profile` flag)
2022-06-15 08:48:58 +00:00
with the following command:
```shell
2022-12-15 13:37:18 +00:00
$ frostfs-s3-authmate generate-presigned-url --endpoint http://localhost:8084 \
2022-06-15 08:48:58 +00:00
--method get --bucket presigned --object obj --lifetime 30s
2023-03-24 12:49:23 +00:00
2022-06-15 08:48:58 +00:00
{
"URL": "http://localhost:8084/presigned/obj?X-Amz-Algorithm=AWS4-HMAC-SHA256& X-Amz-Credential=6UpmiuYspPLMWfyhEKYmZQSsTGkFLS5MhQVdsda3fhz908Hw9eo9urTmaJtfvHMHUpY8SWAptk61bns2Js8f1M5tZ%2F20220615%2Fus-east-2%2Fs3%2Faws4_request& X-Amz-Date=20220615T084203Z& X-Amz-Expires=30& X-Amz-SignedHeaders=host& X-Amz-Signature=47f74d4b84566708a17dded05cce732690745f141235215104ad051e265e3c59"
}
```
You can also provide credential explicitly:
```shell
2022-12-15 13:37:18 +00:00
$ frostfs-s3-authmate generate-presigned-url --endpoint http://localhost:8084 \
2022-06-15 08:48:58 +00:00
--method put --bucket presigned --object obj --lifetime 12h \
--region ru --aws-secret-access-key c2d65ef2980f03f4f495bdebedeeae760496697880d61d106bb9a4e5cd2e0607 \
--aws-access-key-id ETaA2CadPcA7bAkLsML2PbTudXY8uRt2PDjCCwkvRv9s0FDCxWDXYc1SA1vKv8KbyCNsLY2AmAjJ92Vz5rgvsFCy
{
"URL": "http://localhost:8084/presigned/obj?X-Amz-Algorithm=AWS4-HMAC-SHA256& X-Amz-Credential=ETaA2CadPcA7bAkLsML2PbTudXY8uRt2PDjCCwkvRv9s0FDCxWDXYc1SA1vKv8KbyCNsLY2AmAjJ92Vz5rgvsFCy%2F20220615%2Fru%2Fs3%2Faws4_request& X-Amz-Date=20220615T084455Z& X-Amz-Expires=43200& X-Amz-SignedHeaders=host& X-Amz-Signature=ac92aecc3787eeed03922ea82af082091c806f1bb58a7101602ed21369815d04"
}
```
### AWS CLI
You can also can get the presigned URL (only for GET) using aws cli v2:
```shell
2023-03-24 12:49:23 +00:00
$ aws s3 --endpoint http://localhost:8084 presign s3://pregigned/obj
2022-06-15 08:48:58 +00:00
http://localhost:8084/pregigned/obj?X-Amz-Algorithm=AWS4-HMAC-SHA256& X-Amz-Credential=6UpmiuYspPLMWfyhEKYmZQSsTGkFLS5MhQVdsda3fhz908Hw9eo9urTmaJtfvHMHUpY8SWAptk61bns2Js8f1M5tZ%2F20220615%2Fus-east-2%2Fs3%2Faws4_request& X-Amz-Date=20220615T072348Z& X-Amz-Expires=3600& X-Amz-SignedHeaders=host& X-Amz-Signature=b82c13952534b1bba699a718f2d42d135c2833a1e64030d4ce0e198af46551d4
```
2023-06-26 07:48:09 +00:00
## Update secret
You can extend list of s3 gates that can accept already issued credentials.
To do this use `frostfs-s3-authmate update-secret` command:
**Required parameters:**
* `--wallet` is a path to a user wallet `.json` file. You can provide a passphrase to decrypt
a wallet via environment variable `AUTHMATE_WALLET_PASSPHRASE` , or you will be asked to enter a passphrase
interactively. You can also specify an account address to use from a wallet using the `--address` parameter.
* `--gate-wallet` is a path to a gate wallet `.json` file (need to decrypt current access box version). You can provide a passphrase to decrypt
a wallet via environment variable `AUTHMATE_WALLET_GATE_PASSPHRASE` , or you will be asked to enter a passphrase
interactively. You can also specify an account address to use from a wallet using the `--gate-address` parameter.
* `--peer` is an address of a FrostFS peer to connect to
* `--gate-public-key` is a public `secp256r1` 33-byte short key of a gate (use flags repeatedly for multiple gates).
* `--access-key-id` is a credential id to update.
```shell
$ frostfs-s3-authmate update-secret --wallet wallet.json --gate-wallet s3-wallet.json \
--peer 192.168.130.71:8080 \
--gate-public-key 0313b1ac3a8076e155a7e797b24f0b650cccad5941ea59d7cfd51a024a8b2a06bf \
--gate-public-key 0317585fa8274f7afdf1fc5f2a2e7bece549d5175c4e5182e37924f30229aef967 \
--gate-public-key 0223450b9db6d0c083e9c6de1f7d8fd22858d70829e09afa39828bb2416bf190fc \
--access-key-id HwrdXgetdGcEWAQwi68r1PMvw4iSm1Y5Z1fsFNSD6sQP04QomYDfYsspMhENEDhzTGwGxm86Q6R2Weugf3PG4sJ3M
Enter password for wallet.json >
Enter password for s3-wallet.json >
{
"initial_access_key_id": "HwrdXgetdGcEWAQwi68r1PMvw4iSm1Y5Z1fsFNSD6sQP04QomYDfYsspMhENEDhzTGwGxm86Q6R2Weugf3PG4sJ3M",
"access_key_id": "HwrdXgetdGcEWAQwi68r1PMvw4iSm1Y5Z1fsFNSD6sQP0xXf1ahGndNkydG9MrL9WmCebrPwdSHTAysQa9w6yCNJ",
"secret_access_key": "f6a65481fd2752e69e4aa80a6fdcad70cfbf8304d2b3b8c2f9c15212aeee3ae7",
"owner_private_key": "7f40233893e4f4a54e4f2f52455a0e6d563f7eb0233a985094937ed69faef681",
"wallet_public_key": "031a6c6fbbdf02ca351745fa86b9ba5a9452d785ac4f7fc2b7548ca2a46c4fcf4a",
"container_id": "HwrdXgetdGcEWAQwi68r1PMvw4iSm1Y5Z1fsFNSD6sQP"
}
```
2023-09-04 18:01:56 +00:00
## Exit codes
There are several non-zero exit codes added at the moment.
| Code | Description |
|-------|--------------------------------------------------------------------------------------------|
| 1 | Any unknown errors, or errors generated by the parser of command line parameters. |
| 2 | Preparation errors: malformed configuration, issues with input data parsing. |
| 3 | FrostFS errors: connectivity problems, misconfiguration. |
| 4 | Business logic errors: `authmate` could not execute its task because of some restrictions. |