alicloud.maxcompute.Role
Explore with Pulumi AI
Provides a Max Compute Role resource.
For information about Max Compute Role and how to use it, see What is Role.
NOTE: Available since v1.242.0.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const config = new pulumi.Config();
const name = config.get("name") || "terraform-example";
const _default = new alicloud.maxcompute.Project("default", {
defaultQuota: "默认后付费Quota",
projectName: name,
comment: name,
productType: "PayAsYouGo",
});
const defaultRole = new alicloud.maxcompute.Role("default", {
type: "admin",
projectName: _default.id,
policy: JSON.stringify({
Statement: [{
Action: ["odps:*"],
Effect: "Allow",
Resource: [
"acs:odps:*:projects/project_name/authorization/roles",
"acs:odps:*:projects/project_name/authorization/roles/*/*",
],
}],
Version: "1",
}),
roleName: "tf_example112",
});
import pulumi
import json
import pulumi_alicloud as alicloud
config = pulumi.Config()
name = config.get("name")
if name is None:
name = "terraform-example"
default = alicloud.maxcompute.Project("default",
default_quota="默认后付费Quota",
project_name=name,
comment=name,
product_type="PayAsYouGo")
default_role = alicloud.maxcompute.Role("default",
type="admin",
project_name=default.id,
policy=json.dumps({
"Statement": [{
"Action": ["odps:*"],
"Effect": "Allow",
"Resource": [
"acs:odps:*:projects/project_name/authorization/roles",
"acs:odps:*:projects/project_name/authorization/roles/*/*",
],
}],
"Version": "1",
}),
role_name="tf_example112")
package main
import (
"encoding/json"
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/maxcompute"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
name := "terraform-example"
if param := cfg.Get("name"); param != "" {
name = param
}
_default, err := maxcompute.NewProject(ctx, "default", &maxcompute.ProjectArgs{
DefaultQuota: pulumi.String("默认后付费Quota"),
ProjectName: pulumi.String(name),
Comment: pulumi.String(name),
ProductType: pulumi.String("PayAsYouGo"),
})
if err != nil {
return err
}
tmpJSON0, err := json.Marshal(map[string]interface{}{
"Statement": []map[string]interface{}{
map[string]interface{}{
"Action": []string{
"odps:*",
},
"Effect": "Allow",
"Resource": []string{
"acs:odps:*:projects/project_name/authorization/roles",
"acs:odps:*:projects/project_name/authorization/roles/*/*",
},
},
},
"Version": "1",
})
if err != nil {
return err
}
json0 := string(tmpJSON0)
_, err = maxcompute.NewRole(ctx, "default", &maxcompute.RoleArgs{
Type: pulumi.String("admin"),
ProjectName: _default.ID(),
Policy: pulumi.String(json0),
RoleName: pulumi.String("tf_example112"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using System.Text.Json;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var name = config.Get("name") ?? "terraform-example";
var @default = new AliCloud.MaxCompute.Project("default", new()
{
DefaultQuota = "默认后付费Quota",
ProjectName = name,
Comment = name,
ProductType = "PayAsYouGo",
});
var defaultRole = new AliCloud.MaxCompute.Role("default", new()
{
Type = "admin",
ProjectName = @default.Id,
Policy = JsonSerializer.Serialize(new Dictionary<string, object?>
{
["Statement"] = new[]
{
new Dictionary<string, object?>
{
["Action"] = new[]
{
"odps:*",
},
["Effect"] = "Allow",
["Resource"] = new[]
{
"acs:odps:*:projects/project_name/authorization/roles",
"acs:odps:*:projects/project_name/authorization/roles/*/*",
},
},
},
["Version"] = "1",
}),
RoleName = "tf_example112",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.maxcompute.Project;
import com.pulumi.alicloud.maxcompute.ProjectArgs;
import com.pulumi.alicloud.maxcompute.Role;
import com.pulumi.alicloud.maxcompute.RoleArgs;
import static com.pulumi.codegen.internal.Serialization.*;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var config = ctx.config();
final var name = config.get("name").orElse("terraform-example");
var default_ = new Project("default", ProjectArgs.builder()
.defaultQuota("默认后付费Quota")
.projectName(name)
.comment(name)
.productType("PayAsYouGo")
.build());
var defaultRole = new Role("defaultRole", RoleArgs.builder()
.type("admin")
.projectName(default_.id())
.policy(serializeJson(
jsonObject(
jsonProperty("Statement", jsonArray(jsonObject(
jsonProperty("Action", jsonArray("odps:*")),
jsonProperty("Effect", "Allow"),
jsonProperty("Resource", jsonArray(
"acs:odps:*:projects/project_name/authorization/roles",
"acs:odps:*:projects/project_name/authorization/roles/*/*"
))
))),
jsonProperty("Version", "1")
)))
.roleName("tf_example112")
.build());
}
}
configuration:
name:
type: string
default: terraform-example
resources:
default:
type: alicloud:maxcompute:Project
properties:
defaultQuota: 默认后付费Quota
projectName: ${name}
comment: ${name}
productType: PayAsYouGo
defaultRole:
type: alicloud:maxcompute:Role
name: default
properties:
type: admin
projectName: ${default.id}
policy:
fn::toJSON:
Statement:
- Action:
- odps:*
Effect: Allow
Resource:
- acs:odps:*:projects/project_name/authorization/roles
- acs:odps:*:projects/project_name/authorization/roles/*/*
Version: '1'
roleName: tf_example112
Create Role Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Role(name: string, args: RoleArgs, opts?: CustomResourceOptions);
@overload
def Role(resource_name: str,
args: RoleArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Role(resource_name: str,
opts: Optional[ResourceOptions] = None,
project_name: Optional[str] = None,
role_name: Optional[str] = None,
type: Optional[str] = None,
policy: Optional[str] = None)
func NewRole(ctx *Context, name string, args RoleArgs, opts ...ResourceOption) (*Role, error)
public Role(string name, RoleArgs args, CustomResourceOptions? opts = null)
type: alicloud:maxcompute:Role
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args RoleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args RoleArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args RoleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RoleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RoleArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var roleResource = new AliCloud.MaxCompute.Role("roleResource", new()
{
ProjectName = "string",
RoleName = "string",
Type = "string",
Policy = "string",
});
example, err := maxcompute.NewRole(ctx, "roleResource", &maxcompute.RoleArgs{
ProjectName: pulumi.String("string"),
RoleName: pulumi.String("string"),
Type: pulumi.String("string"),
Policy: pulumi.String("string"),
})
var roleResource = new Role("roleResource", RoleArgs.builder()
.projectName("string")
.roleName("string")
.type("string")
.policy("string")
.build());
role_resource = alicloud.maxcompute.Role("roleResource",
project_name="string",
role_name="string",
type="string",
policy="string")
const roleResource = new alicloud.maxcompute.Role("roleResource", {
projectName: "string",
roleName: "string",
type: "string",
policy: "string",
});
type: alicloud:maxcompute:Role
properties:
policy: string
projectName: string
roleName: string
type: string
Role Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Role resource accepts the following input properties:
- Project
Name string - Project name
- Role
Name string Role Name
NOTE: At the beginning of a letter, it can contain letters and numbers and can be no more than 64 characters in length.
- Type string
Role type Valid values: admin/resource
NOTE: -- management type (admin) role: You can grant management type permissions through Policy. You cannot grant resource permissions to management type roles. You cannot grant management type permissions to management type roles through ACL. -- resource role: you can authorize resource type permissions through Policy or ACL, but cannot authorize management type permissions. For details, see role-planning
- Policy string
- Policy Authorization Refer to Policy-based access control and Authorization practices
- Project
Name string - Project name
- Role
Name string Role Name
NOTE: At the beginning of a letter, it can contain letters and numbers and can be no more than 64 characters in length.
- Type string
Role type Valid values: admin/resource
NOTE: -- management type (admin) role: You can grant management type permissions through Policy. You cannot grant resource permissions to management type roles. You cannot grant management type permissions to management type roles through ACL. -- resource role: you can authorize resource type permissions through Policy or ACL, but cannot authorize management type permissions. For details, see role-planning
- Policy string
- Policy Authorization Refer to Policy-based access control and Authorization practices
- project
Name String - Project name
- role
Name String Role Name
NOTE: At the beginning of a letter, it can contain letters and numbers and can be no more than 64 characters in length.
- type String
Role type Valid values: admin/resource
NOTE: -- management type (admin) role: You can grant management type permissions through Policy. You cannot grant resource permissions to management type roles. You cannot grant management type permissions to management type roles through ACL. -- resource role: you can authorize resource type permissions through Policy or ACL, but cannot authorize management type permissions. For details, see role-planning
- policy String
- Policy Authorization Refer to Policy-based access control and Authorization practices
- project
Name string - Project name
- role
Name string Role Name
NOTE: At the beginning of a letter, it can contain letters and numbers and can be no more than 64 characters in length.
- type string
Role type Valid values: admin/resource
NOTE: -- management type (admin) role: You can grant management type permissions through Policy. You cannot grant resource permissions to management type roles. You cannot grant management type permissions to management type roles through ACL. -- resource role: you can authorize resource type permissions through Policy or ACL, but cannot authorize management type permissions. For details, see role-planning
- policy string
- Policy Authorization Refer to Policy-based access control and Authorization practices
- project_
name str - Project name
- role_
name str Role Name
NOTE: At the beginning of a letter, it can contain letters and numbers and can be no more than 64 characters in length.
- type str
Role type Valid values: admin/resource
NOTE: -- management type (admin) role: You can grant management type permissions through Policy. You cannot grant resource permissions to management type roles. You cannot grant management type permissions to management type roles through ACL. -- resource role: you can authorize resource type permissions through Policy or ACL, but cannot authorize management type permissions. For details, see role-planning
- policy str
- Policy Authorization Refer to Policy-based access control and Authorization practices
- project
Name String - Project name
- role
Name String Role Name
NOTE: At the beginning of a letter, it can contain letters and numbers and can be no more than 64 characters in length.
- type String
Role type Valid values: admin/resource
NOTE: -- management type (admin) role: You can grant management type permissions through Policy. You cannot grant resource permissions to management type roles. You cannot grant management type permissions to management type roles through ACL. -- resource role: you can authorize resource type permissions through Policy or ACL, but cannot authorize management type permissions. For details, see role-planning
- policy String
- Policy Authorization Refer to Policy-based access control and Authorization practices
Outputs
All input properties are implicitly available as output properties. Additionally, the Role resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing Role Resource
Get an existing Role resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: RoleState, opts?: CustomResourceOptions): Role
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
policy: Optional[str] = None,
project_name: Optional[str] = None,
role_name: Optional[str] = None,
type: Optional[str] = None) -> Role
func GetRole(ctx *Context, name string, id IDInput, state *RoleState, opts ...ResourceOption) (*Role, error)
public static Role Get(string name, Input<string> id, RoleState? state, CustomResourceOptions? opts = null)
public static Role get(String name, Output<String> id, RoleState state, CustomResourceOptions options)
resources: _: type: alicloud:maxcompute:Role get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Policy string
- Policy Authorization Refer to Policy-based access control and Authorization practices
- Project
Name string - Project name
- Role
Name string Role Name
NOTE: At the beginning of a letter, it can contain letters and numbers and can be no more than 64 characters in length.
- Type string
Role type Valid values: admin/resource
NOTE: -- management type (admin) role: You can grant management type permissions through Policy. You cannot grant resource permissions to management type roles. You cannot grant management type permissions to management type roles through ACL. -- resource role: you can authorize resource type permissions through Policy or ACL, but cannot authorize management type permissions. For details, see role-planning
- Policy string
- Policy Authorization Refer to Policy-based access control and Authorization practices
- Project
Name string - Project name
- Role
Name string Role Name
NOTE: At the beginning of a letter, it can contain letters and numbers and can be no more than 64 characters in length.
- Type string
Role type Valid values: admin/resource
NOTE: -- management type (admin) role: You can grant management type permissions through Policy. You cannot grant resource permissions to management type roles. You cannot grant management type permissions to management type roles through ACL. -- resource role: you can authorize resource type permissions through Policy or ACL, but cannot authorize management type permissions. For details, see role-planning
- policy String
- Policy Authorization Refer to Policy-based access control and Authorization practices
- project
Name String - Project name
- role
Name String Role Name
NOTE: At the beginning of a letter, it can contain letters and numbers and can be no more than 64 characters in length.
- type String
Role type Valid values: admin/resource
NOTE: -- management type (admin) role: You can grant management type permissions through Policy. You cannot grant resource permissions to management type roles. You cannot grant management type permissions to management type roles through ACL. -- resource role: you can authorize resource type permissions through Policy or ACL, but cannot authorize management type permissions. For details, see role-planning
- policy string
- Policy Authorization Refer to Policy-based access control and Authorization practices
- project
Name string - Project name
- role
Name string Role Name
NOTE: At the beginning of a letter, it can contain letters and numbers and can be no more than 64 characters in length.
- type string
Role type Valid values: admin/resource
NOTE: -- management type (admin) role: You can grant management type permissions through Policy. You cannot grant resource permissions to management type roles. You cannot grant management type permissions to management type roles through ACL. -- resource role: you can authorize resource type permissions through Policy or ACL, but cannot authorize management type permissions. For details, see role-planning
- policy str
- Policy Authorization Refer to Policy-based access control and Authorization practices
- project_
name str - Project name
- role_
name str Role Name
NOTE: At the beginning of a letter, it can contain letters and numbers and can be no more than 64 characters in length.
- type str
Role type Valid values: admin/resource
NOTE: -- management type (admin) role: You can grant management type permissions through Policy. You cannot grant resource permissions to management type roles. You cannot grant management type permissions to management type roles through ACL. -- resource role: you can authorize resource type permissions through Policy or ACL, but cannot authorize management type permissions. For details, see role-planning
- policy String
- Policy Authorization Refer to Policy-based access control and Authorization practices
- project
Name String - Project name
- role
Name String Role Name
NOTE: At the beginning of a letter, it can contain letters and numbers and can be no more than 64 characters in length.
- type String
Role type Valid values: admin/resource
NOTE: -- management type (admin) role: You can grant management type permissions through Policy. You cannot grant resource permissions to management type roles. You cannot grant management type permissions to management type roles through ACL. -- resource role: you can authorize resource type permissions through Policy or ACL, but cannot authorize management type permissions. For details, see role-planning
Import
Max Compute Role can be imported using the id, e.g.
$ pulumi import alicloud:maxcompute/role:Role example <project_name>:<role_name>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloud
Terraform Provider.