Skip to content

Commit

Permalink
update oss access key secret
Browse files Browse the repository at this point in the history
  • Loading branch information
FANNG1 committed Sep 13, 2024
1 parent 522d519 commit eaed12b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class OSSProperties {
public static final String GRAVITINO_OSS_ENDPOINT = "oss-endpoint";
// The static access key ID used to access OSS data.
public static final String GRAVITINO_OSS_ACCESS_KEY_ID = "oss-access-key-id";
// The static secret access key used to access OSS data.
// The static access key secret used to access OSS data.
public static final String GRAVITINO_OSS_ACCESS_KEY_SECRET = "oss-access-key-secret";

private OSSProperties() {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,25 +87,25 @@ public class IcebergCatalogPropertiesMetadata extends BaseCatalogPropertiesMetad
false /* hidden */),
stringOptionalPropertyEntry(
S3Properties.GRAVITINO_S3_ACCESS_KEY_ID,
"s3 access-key-id",
"s3 access key ID",
false /* immutable */,
null /* defaultValue */,
true /* hidden */),
stringOptionalPropertyEntry(
S3Properties.GRAVITINO_S3_SECRET_ACCESS_KEY,
"s3 secret-access-key",
"s3 secret access key",
false /* immutable */,
null /* defaultValue */,
true /* hidden */),
stringOptionalPropertyEntry(
OSSProperties.GRAVITINO_OSS_ACCESS_KEY_ID,
"OSS access-key-id",
"OSS access key ID",
false /* immutable */,
null /* defaultValue */,
true /* hidden */),
stringOptionalPropertyEntry(
OSSProperties.GRAVITINO_OSS_ACCESS_KEY_SECRET,
"OSS access-key-secret",
"OSS access key secret",
false /* immutable */,
null /* defaultValue */,
true /* hidden */));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ public class IcebergConfig extends Config implements OverwriteDefaultConfig {

public static final ConfigEntry<String> OSS_ACCESS_KEY_SECRET =
new ConfigBuilder(OSSProperties.GRAVITINO_OSS_ACCESS_KEY_SECRET)
.doc("The static secret access key used to access OSS data")
.doc("The static access key secret used to access OSS data")
.version(ConfigConstants.VERSION_0_7_0)
.stringConf()
.create();
Expand Down

0 comments on commit eaed12b

Please sign in to comment.