From 128c059722925c4fb9b6ff70920a1d822d38329f Mon Sep 17 00:00:00 2001 From: Chriskery Date: Fri, 10 Jan 2025 10:05:14 +0800 Subject: [PATCH] Add Docs or docs/alicloud-configuration.md --- docs/alicloud-configuration.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/docs/alicloud-configuration.md b/docs/alicloud-configuration.md index e69de29b..19bca15b 100644 --- a/docs/alicloud-configuration.md +++ b/docs/alicloud-configuration.md @@ -0,0 +1,25 @@ +# Gcloud Configuration + +You can configure AliCloud Cloud Monitoring Uptime Checks as a Ingress Monitor by using below configuration: + + +| Key | Description | +| -------------|------------------------------------------------------------------------------------| +| name | Name of the provider (e.g. AliCloud) | +| apiKey | Access Key ID (AKID): This is a unique identifier for your Alibaba Cloud account. It is used in conjunction with the Access Key Secret to sign requests.| +| apiToken | Access Key Secret (AKSK): This is a secret key associated with the Access Key ID. It is used to sign requests to ensure that they are sent by a legitimate user. | +| apiURL | `apiUrl` refers to: https://api.aliyun.com/product/Cms | + +When you create an Alibaba Cloud account, you are provided with an Access Key ID (AKID) and an Access Key Secret (AKSK). These credentials are used to sign requests to Alibaba Cloud APIs, ensuring that the requests are securely authenticated. + +AccessKey ID and AccessKey Secret are your security credentials to access API of Alibaba Cloud, have full access to your account. Keep the AccessKey confidential. + +**Example Configuration:** + +```yaml +providers: + - name: AliCloud + apiKey: + apiToken: + apiURL: "metrics.cn-qingdao.aliyuncs.com" +```