All Products
Search
Document Center

Simple Log Service:RAM authorization

Last Updated:Nov 13, 2024
Resource Access Management (RAM) is a service provided by Alibaba Cloud to manage user identities and resource access permissions. You can use RAM to prevent RAM users from sharing the AccessKey pairs of your Alibaba Cloud account. You can also use RAM to grant minimum permissions to RAM users. RAM uses policies to define permissions.
This topic describes the elements, such as Action, Resource, and Condition, which are defined by SLS. You can use the elements to create policies in RAM. The code (RamCode) in RAM that is used to indicate SLS is log. You can grant permissions on SLS at the .

General structure of a policy

Policies can be stored as JSON files. The following code provides an example on the general structure of a policy:
{
  "Version": "1",
  "Statement": [
    {
      "Effect": "<Effect>",
      "Action": "<Action>",
      "Resource": "<Resource>",
      "Condition": {
        "<Condition_operator>": {
          "<Condition_key>": [
            "<Condition_value>"
          ]
        }
      }
    }
  ]
}
The following list describes the fields in the policy:
  • Effect: specifies the authorization effect. Valid values: Allow, Deny.
  • Action: specifies one or more API operations that are allowed or denied. For more information, see the Action section of this topic.
  • Resource: specifies one or more resources to which the policy applies. You can use an Alibaba Cloud Resource Name (ARN) to specify a resource. For more information, see the Resource section of this topic.
  • Condition: specifies one or more conditions that are required for the policy to take effect. This is an optional field. For more information, see the Condition section of this topic.
    • Condition_operator: specifies the conditional operators. Different types of conditions support different conditional operators. For more information, see Policy elements.
    • Condition_key: specifies the condition keys.
    • Condition_value: specifies the condition values.

Action

SLS defines the values that you can use in the Action element of a policy statement. You can attach the policy to a RAM user or a RAM role so that the RAM user or the RAM role can perform a group of operations. You cannot authorize the RAM user or the RAM role to perform a specific operation in SLS. You can authorize the RAM user or the RAM role to perform only a group of operations at the service level. The following list describes the columns in the table:
  • Operation: a group of operations that you can authorize the RAM user or the RAM to perform.
  • Access level: the access level of each operation. The levels are read, write, and list.
  • Resource type: the type of the resource on which you can authorize the RAM user or the RAM role to perform the group of operations. You cannot grant permissions on this Alibaba Cloud service at the resource level. Therefore, you must grant permissions on all resources in this Alibaba Cloud service.
  • Condition key: the condition keys that are defined by the Alibaba Cloud service. The Condition key column does not list the common condition keys that are defined by Alibaba Cloud. For more information about the common condition keys, see Generic Condition Keyword.
  • Associated operation: other operations that the RAM user or the RAM role must have permissions to perform to complete the operation. To complete the operation, the RAM user or the RAM role must have the permissions to perform the associated operations.
ActionsAccess levelResource typeCondition keyAssociated operation
log:CreateConfigcreate
All Resources
log:TLSVersion
None
log:ListConsumerGroupget
All Resources
log:TLSVersion
None
log:CreateIndexcreate
All Resources
log:TLSVersion
None
log:UpdateLogStoreupdate
All Resources
log:TLSVersion
log:Encrypted
None
log:UpdateLogtailPipelineConfigupdate
All Resources
log:TLSVersion
None
log:GetCursorOrDataget
All Resources
log:TLSVersion
None
log:ChangeResourceGroupupdate
All Resources
log:TLSVersion
None
log:ListLogStoresget
All Resources
log:TLSVersion
None
log:ConsumerGroupHeartBeatnone
All Resources
log:TLSVersion
None
log:UpdateSavedSearchupdate
All Resources
log:TLSVersion
None
log:DeleteProjectdelete
All Resources
log:TLSVersion
None
log:UpdateProjectupdate
All Resources
log:TLSVersion
None
log:ListProjectget
All Resources
log:TLSVersion
None
log:ListSavedSearchget
All Resources
log:TLSVersion
None
log:GetIndexget
All Resources
log:TLSVersion
None
log:ListMachinesget
All Resources
log:TLSVersion
None
log:ListConfiglist
All Resources
log:TLSVersion
None
log:ListTagResourcesget
All Resources
log:TLSVersion
None
log:CreateLogStorecreate
All Resources
log:TLSVersion
log:Encrypted
None
log:ListMachineGroupget
All Resources
log:TLSVersion
None
log:GetLoggingget
All Resources
log:TLSVersion
None
log:GetAppliedConfigsget
All Resources
log:TLSVersion
None
log:UpdateConsumerGroupupdate
All Resources
log:TLSVersion
None
log:GetMachineGroupget
All Resources
log:TLSVersion
None
log:GetCursorOrDataget
All Resources
log:TLSVersion
None
log:ListDomainsget
All Resources
log:TLSVersion
None
log:ListShardsget
All Resources
log:TLSVersion
None
log:CreateDashboardcreate
All Resources
log:TLSVersion
None
log:CreateSavedSearchcreate
All Resources
log:TLSVersion
None
log:UpdateDashboardupdate
All Resources
log:TLSVersion
None
log:CreateConsumerGroupcreate
All Resources
log:TLSVersion
None
log:GetConfigget
All Resources
log:TLSVersion
None
log:ListDashboardlist
All Resources
log:TLSVersion
None
log:CreateLoggingcreate
All Resources
log:TLSVersion
None
log:UpdateIndexupdate
All Resources
log:TLSVersion
None
log:GetProjectget
All Resources
log:TLSVersion
None
log:GetAppliedMachineGroupsget
All Resources
log:TLSVersion
None
log:UpdateConfigupdate
All Resources
log:TLSVersion
None
log:GetDashboardget
All Resources
log:TLSVersion
None
log:CreateMachineGroupcreate
All Resources
log:TLSVersion
None
log:CreateProjectcreate
All Resources
log:TLSVersion
None
log:GetLogStoreMeteringModeget
All Resources
NoneNone
log:GetLogtailPipelineConfigget
All Resources
log:TLSVersion
None
log:GetLogStoreget
All Resources
log:TLSVersion
None
log:ConsumerGroupUpdateCheckPointupdate
All Resources
log:TLSVersion
None

Resource

Resource typeARN
No data

Condition

SLS defines the values that you can use in the Condition element of a policy statement. The following table describes the values. The following table describes the service-specific condition keys. The common condition keys that are defined by Alibaba Cloud also apply to SLS. For more information about the common condition keys, see Generic Condition Keyword.
The data type determines the conditional operators that you can use to compare the value in a request with the value in a policy statement. You must use conditional operators that are supported by the data type. Otherwise, you cannot compare the value in the request with the value in the policy statement. In this case, the authorization is invalid. For more information about the conditional operators that are supported by each data type, see Policy elements.
Condition keyDescriptionData type
log:TLSVersionVersion of TLSString
log:EncryptedWhether to specify encryption configuration when creating or modifying a LogstoreBoolean

What to do next

You can create a custom policy and attach the policy to a RAM user, RAM user group, or RAM role. For more information, see the following topics: