Skip to content

Commit

Permalink
bug fix: 新增配置时读取配置项有误
Browse files Browse the repository at this point in the history
  • Loading branch information
Yohann0617 committed Nov 24, 2024
1 parent db971ce commit 4f413e6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/com/yohann/ocihelper/enums/OciCfgEnum.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ public enum OciCfgEnum {
/**
* OCI配置
*/
OCI_CFG_USER_ID("user", "用户id"),
OCI_CFG_TENANT_ID("tenancy", "租户id"),
OCI_CFG_USER_ID("userId", "用户id"),
OCI_CFG_TENANT_ID("tenantId", "租户id"),
OCI_CFG_REGION("region", "区域"),
OCI_CFG_FINGERPRINT("fingerprint", "指纹"),
OCI_CFG_KEY_FILE("key_file", "密钥文件全路径"),
OCI_CFG_KEY_FILE("key_path", "密钥文件全路径"),
;

private String type;
Expand Down

0 comments on commit 4f413e6

Please sign in to comment.