本文為您提供限制RAM用戶訪問方式的參考示例。
下述策略表示:被授予此策略的RAM用戶只能通過HTTPS方式訪問ECS。您可以通過設置Condition
下acs:SecureTransport
的值為true
來實現。
{
"Statement": [
{
"Action": "ecs:*",
"Effect": "Allow",
"Resource": "*",
"Condition": {
"Bool": {
"acs:SecureTransport": "true"
}
}
}
],
"Version": "1"
}
說明
Condition
(限制條件)只針對當前權限策略描述的操作有效。您可以修改acs:SecureTransport
的值為true
或false
。
文檔內容是否對您有幫助?