You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,6 +47,8 @@ provider configuration:
47
47
48
48
-`accessKey` (String) The Access Key for Volcengine Provider. It must be provided, but it can also be sourced from the `VOLCENGINE_ACCESS_KEY` environment variable
49
49
-`secretKey` (String) he Secret Key for Volcengine Provider. It must be provided, but it can also be sourced from the `VOLCENGINE_SECRET_KEY` environment variable
50
+
-`profile` (String) The Profile for Volcengine Provider. It can be used as an alternative authentication method to AK/SK, and can also be sourced from the `VOLCENGINE_PROFILE` environment variable
51
+
-`file_path` (String) The File Path for Volcengine Provider. It specifies the path to the profile configuration file. If not specified, the default path `~/.volcengine` will be used, and can also be sourced from the `VOLCENGINE_FILE_PATH` environment variable
50
52
-`assumeRole` (Attributes) An `assume_role` block (documented below). Only one `assume_role` block may be in the configuration. (see [below for nested schema](#nestedatt--assume_role))
51
53
-`customerHeaders` (String) CUSTOMER HEADERS for Volcengine Provider. The customer_headers field uses commas (,) to separate multiple headers, and colons (:) to separate each header key from its corresponding value.
52
54
-`disableSsl` (Boolean) Disable SSL for Volcengine Provider
@@ -368,7 +376,7 @@ The following methods are supported, in this order, and explained below:
368
376
369
377
### Static credentials
370
378
371
-
Static credentials can be provided by adding `accessKey`, `secretKey` and `region` in-line in the
379
+
Static credentials can be provided by adding `accessKey`, `secretKey`, `profile`, `filePath` and `region` in-line in the
372
380
volcengine provider configuration:
373
381
374
382
Usage:
@@ -384,12 +392,16 @@ config:
384
392
value: 'TODO: var.region'
385
393
volcengine:secretKey:
386
394
value: 'TODO: var.secret_key'
395
+
volcengine:profile:
396
+
value: 'TODO: var.profile'
397
+
volcengine:filePath:
398
+
value: 'TODO: var.file_path'
387
399
388
400
```
389
401
390
402
### Environment variables
391
403
392
-
You can provide your credentials via `VOLCENGINE_ACCESS_KEY`, `VOLCENGINE_SECRET_KEY` environment variables. The Region can be set using the `VOLCENGINE_REGION` environment variables.
404
+
You can provide your credentials via VOLCENGINE_ACCESS_KEY and VOLCENGINE_SECRET_KEY environment variables, representing your volcengine public key and private key respectively. VOLCENGINE_REGION, VOLCENGINE_PROFILE, and VOLCENGINE_FILE_PATH are also used, if applicable:
$ export VOLCENGINE_FILE_PATH="your_file_path" # if empty, default path is ~/.volcengine
406
420
$ pulumi preview
407
421
```
408
422
@@ -416,6 +430,8 @@ provider configuration:
416
430
417
431
-`accessKey` (String) The Access Key for Volcengine Provider. It must be provided, but it can also be sourced from the `VOLCENGINE_ACCESS_KEY` environment variable
418
432
-`secretKey` (String) he Secret Key for Volcengine Provider. It must be provided, but it can also be sourced from the `VOLCENGINE_SECRET_KEY` environment variable
433
+
-`profile` (String) The Profile for Volcengine Provider. It can be used as an alternative authentication method to AK/SK, and can also be sourced from the `VOLCENGINE_PROFILE` environment variable
434
+
-`file_path` (String) The File Path for Volcengine Provider. It specifies the path to the profile configuration file. If not specified, the default path `~/.volcengine` will be used, and can also be sourced from the `VOLCENGINE_FILE_PATH` environment variable
419
435
-`assumeRole` (Attributes) An `assume_role` block (documented below). Only one `assume_role` block may be in the configuration. (see [below for nested schema](#nestedatt--assume_role))
420
436
-`customerHeaders` (String) CUSTOMER HEADERS for Volcengine Provider. The customer_headers field uses commas (,) to separate multiple headers, and colons (:) to separate each header key from its corresponding value.
421
437
-`disableSsl` (Boolean) Disable SSL for Volcengine Provider
0 commit comments