diff --git a/confidential-data-hub/hub/src/kms/plugins/aliyun/client/mod.rs b/confidential-data-hub/hub/src/kms/plugins/aliyun/client/mod.rs index 653561cb5..52b0cb936 100644 --- a/confidential-data-hub/hub/src/kms/plugins/aliyun/client/mod.rs +++ b/confidential-data-hub/hub/src/kms/plugins/aliyun/client/mod.rs @@ -11,7 +11,7 @@ use sts_token_client::StsTokenClient; mod client_key_client; mod ecs_ram_role_client; -mod oidc_with_ram; +pub mod oidc_with_ram; mod sts_token_client; use crate::kms::plugins::_IN_GUEST_DEFAULT_KEY_PATH; diff --git a/confidential-data-hub/hub/src/kms/plugins/aliyun/mod.rs b/confidential-data-hub/hub/src/kms/plugins/aliyun/mod.rs index 9bbc02d0f..b58373084 100644 --- a/confidential-data-hub/hub/src/kms/plugins/aliyun/mod.rs +++ b/confidential-data-hub/hub/src/kms/plugins/aliyun/mod.rs @@ -9,6 +9,6 @@ //! The product detail can be found here: . mod annotations; -mod client; +pub mod client; pub use client::AliyunKmsClient;