Creating static access keys
These are instructions for how to create static access keys for a service account.
If you don't have a service account yet, create one and assign it roles.
To create a static access key:
-
In the management console, select the folder the service account belongs to.
-
Go to the Service accounts tab.
-
Choose a service account and click the line with its name.
-
Click Create new key in the top panel.
-
Specify the key description and click Create.
-
Save the ID and private key.
Alert
After the dialog is closed, the private key value will be unavailable.
If you don't have the Yandex Cloud command line interface yet, install and initialize it.
The folder specified in the CLI profile is used by default. You can specify a different folder using the --folder-name
or --folder-id
parameter.
-
See the description of the create static access key command:
yc iam access-key create --help
-
Select a service account (for example,
my-robot
):yc iam service-account list
Result:
+----------------------+------------------+-------------------------------+ | ID | NAME | DESCRIPTION | +----------------------+------------------+-------------------------------+ | aje6o61dvog2h6g9a33s | my-robot | | | aje9sda1ufvqcmfksd3f | blabla | bla bla bla is my description | +----------------------+------------------+-------------------------------+
-
Create an access key for the
my-robot
service account:yc iam access-key create --service-account-name my-robot
Result:
access_key: id: aje6t3vsbj8lp9r4vk2u service_account_id: ajepg0mjt06siuj65usm created_at: "2018-11-22T14:37:51Z" key_id: 0n8X6WY6S24N7OjXQ0YQ secret: JyTRFdqw8t1kh2-OJNz4JX5ZTz9Dj1rI9hxtzMP1
-
Save the ID
key_id
andsecret
key. You will not be able to get the key value again.
Examples
Add a description when creating
Add a description when creating an access key.
yc iam access-key create --service-account-name my-robot \
--description "this key is for my bucket"
curl -X POST \
-H 'Content-Type: application/json' \
-H "Authorization: Bearer <IAM-TOKEN>" \
-d '{
"serviceAccountId": "aje6o61dvog2h6g9a33s",
"description": "this key is for my bucket"
}' \
https://iam.api.cloud.yandex.net/iam/aws-compatibility/v1/accessKeys