1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. cloudsso
  5. AccessConfiguration
Alibaba Cloud v3.76.0 published on Tuesday, Apr 8, 2025 by Pulumi

alicloud.cloudsso.AccessConfiguration

Explore with Pulumi AI

Provides a Cloud SSO Access Configuration resource.

For information about Cloud SSO Access Configuration and how to use it, see What is Access Configuration.

NOTE: Available since v1.145.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 = alicloud.cloudsso.getDirectories({});
const defaultAccessConfiguration = new alicloud.cloudsso.AccessConfiguration("default", {
    directoryId: _default.then(_default => _default.directories?.[0]?.id),
    accessConfigurationName: name,
    permissionPolicies: [{
        permissionPolicyType: "Inline",
        permissionPolicyName: name,
        permissionPolicyDocument: `    {
        "Statement":[
      {
        "Action":"ecs:Get*",
        "Effect":"Allow",
        "Resource":[
            "*"
        ]
      }
      ],
        "Version": "1"
    }
`,
    }],
});
Copy
import pulumi
import pulumi_alicloud as alicloud

config = pulumi.Config()
name = config.get("name")
if name is None:
    name = "terraform-example"
default = alicloud.cloudsso.get_directories()
default_access_configuration = alicloud.cloudsso.AccessConfiguration("default",
    directory_id=default.directories[0].id,
    access_configuration_name=name,
    permission_policies=[{
        "permission_policy_type": "Inline",
        "permission_policy_name": name,
        "permission_policy_document": """    {
        "Statement":[
      {
        "Action":"ecs:Get*",
        "Effect":"Allow",
        "Resource":[
            "*"
        ]
      }
      ],
        "Version": "1"
    }
""",
    }])
Copy
package main

import (
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/cloudsso"
	"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 := cloudsso.GetDirectories(ctx, &cloudsso.GetDirectoriesArgs{}, nil)
		if err != nil {
			return err
		}
		_, err = cloudsso.NewAccessConfiguration(ctx, "default", &cloudsso.AccessConfigurationArgs{
			DirectoryId:             pulumi.String(_default.Directories[0].Id),
			AccessConfigurationName: pulumi.String(name),
			PermissionPolicies: cloudsso.AccessConfigurationPermissionPolicyArray{
				&cloudsso.AccessConfigurationPermissionPolicyArgs{
					PermissionPolicyType: pulumi.String("Inline"),
					PermissionPolicyName: pulumi.String(name),
					PermissionPolicyDocument: pulumi.String(`    {
        "Statement":[
      {
        "Action":"ecs:Get*",
        "Effect":"Allow",
        "Resource":[
            "*"
        ]
      }
      ],
        "Version": "1"
    }
`),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;

return await Deployment.RunAsync(() => 
{
    var config = new Config();
    var name = config.Get("name") ?? "terraform-example";
    var @default = AliCloud.CloudSso.GetDirectories.Invoke();

    var defaultAccessConfiguration = new AliCloud.CloudSso.AccessConfiguration("default", new()
    {
        DirectoryId = @default.Apply(@default => @default.Apply(getDirectoriesResult => getDirectoriesResult.Directories[0]?.Id)),
        AccessConfigurationName = name,
        PermissionPolicies = new[]
        {
            new AliCloud.CloudSso.Inputs.AccessConfigurationPermissionPolicyArgs
            {
                PermissionPolicyType = "Inline",
                PermissionPolicyName = name,
                PermissionPolicyDocument = @"    {
        ""Statement"":[
      {
        ""Action"":""ecs:Get*"",
        ""Effect"":""Allow"",
        ""Resource"":[
            ""*""
        ]
      }
      ],
        ""Version"": ""1""
    }
",
            },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.cloudsso.CloudssoFunctions;
import com.pulumi.alicloud.cloudsso.inputs.GetDirectoriesArgs;
import com.pulumi.alicloud.cloudsso.AccessConfiguration;
import com.pulumi.alicloud.cloudsso.AccessConfigurationArgs;
import com.pulumi.alicloud.cloudsso.inputs.AccessConfigurationPermissionPolicyArgs;
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");
        final var default = CloudssoFunctions.getDirectories();

        var defaultAccessConfiguration = new AccessConfiguration("defaultAccessConfiguration", AccessConfigurationArgs.builder()
            .directoryId(default_.directories()[0].id())
            .accessConfigurationName(name)
            .permissionPolicies(AccessConfigurationPermissionPolicyArgs.builder()
                .permissionPolicyType("Inline")
                .permissionPolicyName(name)
                .permissionPolicyDocument("""
    {
        "Statement":[
      {
        "Action":"ecs:Get*",
        "Effect":"Allow",
        "Resource":[
            "*"
        ]
      }
      ],
        "Version": "1"
    }
                """)
                .build())
            .build());

    }
}
Copy
configuration:
  name:
    type: string
    default: terraform-example
resources:
  defaultAccessConfiguration:
    type: alicloud:cloudsso:AccessConfiguration
    name: default
    properties:
      directoryId: ${default.directories[0].id}
      accessConfigurationName: ${name}
      permissionPolicies:
        - permissionPolicyType: Inline
          permissionPolicyName: ${name}
          permissionPolicyDocument: |2
                {
                    "Statement":[
                  {
                    "Action":"ecs:Get*",
                    "Effect":"Allow",
                    "Resource":[
                        "*"
                    ]
                  }
                  ],
                    "Version": "1"
                }
variables:
  default:
    fn::invoke:
      function: alicloud:cloudsso:getDirectories
      arguments: {}
Copy

Create AccessConfiguration Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new AccessConfiguration(name: string, args: AccessConfigurationArgs, opts?: CustomResourceOptions);
@overload
def AccessConfiguration(resource_name: str,
                        args: AccessConfigurationArgs,
                        opts: Optional[ResourceOptions] = None)

@overload
def AccessConfiguration(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        access_configuration_name: Optional[str] = None,
                        directory_id: Optional[str] = None,
                        description: Optional[str] = None,
                        force_remove_permission_policies: Optional[bool] = None,
                        permission_policies: Optional[Sequence[AccessConfigurationPermissionPolicyArgs]] = None,
                        relay_state: Optional[str] = None,
                        session_duration: Optional[int] = None)
func NewAccessConfiguration(ctx *Context, name string, args AccessConfigurationArgs, opts ...ResourceOption) (*AccessConfiguration, error)
public AccessConfiguration(string name, AccessConfigurationArgs args, CustomResourceOptions? opts = null)
public AccessConfiguration(String name, AccessConfigurationArgs args)
public AccessConfiguration(String name, AccessConfigurationArgs args, CustomResourceOptions options)
type: alicloud:cloudsso:AccessConfiguration
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. AccessConfigurationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. AccessConfigurationArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. AccessConfigurationArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. AccessConfigurationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. AccessConfigurationArgs
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 accessConfigurationResource = new AliCloud.CloudSso.AccessConfiguration("accessConfigurationResource", new()
{
    AccessConfigurationName = "string",
    DirectoryId = "string",
    Description = "string",
    ForceRemovePermissionPolicies = false,
    PermissionPolicies = new[]
    {
        new AliCloud.CloudSso.Inputs.AccessConfigurationPermissionPolicyArgs
        {
            PermissionPolicyName = "string",
            PermissionPolicyType = "string",
            PermissionPolicyDocument = "string",
        },
    },
    RelayState = "string",
    SessionDuration = 0,
});
Copy
example, err := cloudsso.NewAccessConfiguration(ctx, "accessConfigurationResource", &cloudsso.AccessConfigurationArgs{
	AccessConfigurationName:       pulumi.String("string"),
	DirectoryId:                   pulumi.String("string"),
	Description:                   pulumi.String("string"),
	ForceRemovePermissionPolicies: pulumi.Bool(false),
	PermissionPolicies: cloudsso.AccessConfigurationPermissionPolicyArray{
		&cloudsso.AccessConfigurationPermissionPolicyArgs{
			PermissionPolicyName:     pulumi.String("string"),
			PermissionPolicyType:     pulumi.String("string"),
			PermissionPolicyDocument: pulumi.String("string"),
		},
	},
	RelayState:      pulumi.String("string"),
	SessionDuration: pulumi.Int(0),
})
Copy
var accessConfigurationResource = new AccessConfiguration("accessConfigurationResource", AccessConfigurationArgs.builder()
    .accessConfigurationName("string")
    .directoryId("string")
    .description("string")
    .forceRemovePermissionPolicies(false)
    .permissionPolicies(AccessConfigurationPermissionPolicyArgs.builder()
        .permissionPolicyName("string")
        .permissionPolicyType("string")
        .permissionPolicyDocument("string")
        .build())
    .relayState("string")
    .sessionDuration(0)
    .build());
Copy
access_configuration_resource = alicloud.cloudsso.AccessConfiguration("accessConfigurationResource",
    access_configuration_name="string",
    directory_id="string",
    description="string",
    force_remove_permission_policies=False,
    permission_policies=[{
        "permission_policy_name": "string",
        "permission_policy_type": "string",
        "permission_policy_document": "string",
    }],
    relay_state="string",
    session_duration=0)
Copy
const accessConfigurationResource = new alicloud.cloudsso.AccessConfiguration("accessConfigurationResource", {
    accessConfigurationName: "string",
    directoryId: "string",
    description: "string",
    forceRemovePermissionPolicies: false,
    permissionPolicies: [{
        permissionPolicyName: "string",
        permissionPolicyType: "string",
        permissionPolicyDocument: "string",
    }],
    relayState: "string",
    sessionDuration: 0,
});
Copy
type: alicloud:cloudsso:AccessConfiguration
properties:
    accessConfigurationName: string
    description: string
    directoryId: string
    forceRemovePermissionPolicies: false
    permissionPolicies:
        - permissionPolicyDocument: string
          permissionPolicyName: string
          permissionPolicyType: string
    relayState: string
    sessionDuration: 0
Copy

AccessConfiguration 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 AccessConfiguration resource accepts the following input properties:

AccessConfigurationName
This property is required.
Changes to this property will trigger replacement.
string
The name of the access configuration. The name can be up to 32 characters long and can contain letters, digits, and hyphens (-).
DirectoryId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the Directory.
Description string
The description of the access configuration. The description can be up to 1024 characters in length.
ForceRemovePermissionPolicies bool
This parameter is used to force deletion permission_policies. Valid Value: true, false.

  • NOTE: The permission_policies will be removed automatically when the resource is deleted, please operate with caution. If there are left more permission policies in the access configuration, please remove them before deleting the access configuration.
PermissionPolicies List<Pulumi.AliCloud.CloudSso.Inputs.AccessConfigurationPermissionPolicy>
The Policy List. See permission_policies below.
RelayState string
The RelayState of the Access Configuration, Cloud SSO users use this access configuration to access the RD account, the initial access page address. Must be the Alibaba Cloud console page, the default is the console home page.
SessionDuration int
The SessionDuration of the Access Configuration. Unit: Seconds. Valid values: 900 to 43200.
AccessConfigurationName
This property is required.
Changes to this property will trigger replacement.
string
The name of the access configuration. The name can be up to 32 characters long and can contain letters, digits, and hyphens (-).
DirectoryId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the Directory.
Description string
The description of the access configuration. The description can be up to 1024 characters in length.
ForceRemovePermissionPolicies bool
This parameter is used to force deletion permission_policies. Valid Value: true, false.

  • NOTE: The permission_policies will be removed automatically when the resource is deleted, please operate with caution. If there are left more permission policies in the access configuration, please remove them before deleting the access configuration.
PermissionPolicies []AccessConfigurationPermissionPolicyArgs
The Policy List. See permission_policies below.
RelayState string
The RelayState of the Access Configuration, Cloud SSO users use this access configuration to access the RD account, the initial access page address. Must be the Alibaba Cloud console page, the default is the console home page.
SessionDuration int
The SessionDuration of the Access Configuration. Unit: Seconds. Valid values: 900 to 43200.
accessConfigurationName
This property is required.
Changes to this property will trigger replacement.
String
The name of the access configuration. The name can be up to 32 characters long and can contain letters, digits, and hyphens (-).
directoryId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the Directory.
description String
The description of the access configuration. The description can be up to 1024 characters in length.
forceRemovePermissionPolicies Boolean
This parameter is used to force deletion permission_policies. Valid Value: true, false.

  • NOTE: The permission_policies will be removed automatically when the resource is deleted, please operate with caution. If there are left more permission policies in the access configuration, please remove them before deleting the access configuration.
permissionPolicies List<AccessConfigurationPermissionPolicy>
The Policy List. See permission_policies below.
relayState String
The RelayState of the Access Configuration, Cloud SSO users use this access configuration to access the RD account, the initial access page address. Must be the Alibaba Cloud console page, the default is the console home page.
sessionDuration Integer
The SessionDuration of the Access Configuration. Unit: Seconds. Valid values: 900 to 43200.
accessConfigurationName
This property is required.
Changes to this property will trigger replacement.
string
The name of the access configuration. The name can be up to 32 characters long and can contain letters, digits, and hyphens (-).
directoryId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the Directory.
description string
The description of the access configuration. The description can be up to 1024 characters in length.
forceRemovePermissionPolicies boolean
This parameter is used to force deletion permission_policies. Valid Value: true, false.

  • NOTE: The permission_policies will be removed automatically when the resource is deleted, please operate with caution. If there are left more permission policies in the access configuration, please remove them before deleting the access configuration.
permissionPolicies AccessConfigurationPermissionPolicy[]
The Policy List. See permission_policies below.
relayState string
The RelayState of the Access Configuration, Cloud SSO users use this access configuration to access the RD account, the initial access page address. Must be the Alibaba Cloud console page, the default is the console home page.
sessionDuration number
The SessionDuration of the Access Configuration. Unit: Seconds. Valid values: 900 to 43200.
access_configuration_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the access configuration. The name can be up to 32 characters long and can contain letters, digits, and hyphens (-).
directory_id
This property is required.
Changes to this property will trigger replacement.
str
The ID of the Directory.
description str
The description of the access configuration. The description can be up to 1024 characters in length.
force_remove_permission_policies bool
This parameter is used to force deletion permission_policies. Valid Value: true, false.

  • NOTE: The permission_policies will be removed automatically when the resource is deleted, please operate with caution. If there are left more permission policies in the access configuration, please remove them before deleting the access configuration.
permission_policies Sequence[AccessConfigurationPermissionPolicyArgs]
The Policy List. See permission_policies below.
relay_state str
The RelayState of the Access Configuration, Cloud SSO users use this access configuration to access the RD account, the initial access page address. Must be the Alibaba Cloud console page, the default is the console home page.
session_duration int
The SessionDuration of the Access Configuration. Unit: Seconds. Valid values: 900 to 43200.
accessConfigurationName
This property is required.
Changes to this property will trigger replacement.
String
The name of the access configuration. The name can be up to 32 characters long and can contain letters, digits, and hyphens (-).
directoryId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the Directory.
description String
The description of the access configuration. The description can be up to 1024 characters in length.
forceRemovePermissionPolicies Boolean
This parameter is used to force deletion permission_policies. Valid Value: true, false.

  • NOTE: The permission_policies will be removed automatically when the resource is deleted, please operate with caution. If there are left more permission policies in the access configuration, please remove them before deleting the access configuration.
permissionPolicies List<Property Map>
The Policy List. See permission_policies below.
relayState String
The RelayState of the Access Configuration, Cloud SSO users use this access configuration to access the RD account, the initial access page address. Must be the Alibaba Cloud console page, the default is the console home page.
sessionDuration Number
The SessionDuration of the Access Configuration. Unit: Seconds. Valid values: 900 to 43200.

Outputs

All input properties are implicitly available as output properties. Additionally, the AccessConfiguration resource produces the following output properties:

AccessConfigurationId string
The ID of the Access Configuration.
Id string
The provider-assigned unique ID for this managed resource.
AccessConfigurationId string
The ID of the Access Configuration.
Id string
The provider-assigned unique ID for this managed resource.
accessConfigurationId String
The ID of the Access Configuration.
id String
The provider-assigned unique ID for this managed resource.
accessConfigurationId string
The ID of the Access Configuration.
id string
The provider-assigned unique ID for this managed resource.
access_configuration_id str
The ID of the Access Configuration.
id str
The provider-assigned unique ID for this managed resource.
accessConfigurationId String
The ID of the Access Configuration.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing AccessConfiguration Resource

Get an existing AccessConfiguration 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?: AccessConfigurationState, opts?: CustomResourceOptions): AccessConfiguration
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        access_configuration_id: Optional[str] = None,
        access_configuration_name: Optional[str] = None,
        description: Optional[str] = None,
        directory_id: Optional[str] = None,
        force_remove_permission_policies: Optional[bool] = None,
        permission_policies: Optional[Sequence[AccessConfigurationPermissionPolicyArgs]] = None,
        relay_state: Optional[str] = None,
        session_duration: Optional[int] = None) -> AccessConfiguration
func GetAccessConfiguration(ctx *Context, name string, id IDInput, state *AccessConfigurationState, opts ...ResourceOption) (*AccessConfiguration, error)
public static AccessConfiguration Get(string name, Input<string> id, AccessConfigurationState? state, CustomResourceOptions? opts = null)
public static AccessConfiguration get(String name, Output<String> id, AccessConfigurationState state, CustomResourceOptions options)
resources:  _:    type: alicloud:cloudsso:AccessConfiguration    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
AccessConfigurationId string
The ID of the Access Configuration.
AccessConfigurationName Changes to this property will trigger replacement. string
The name of the access configuration. The name can be up to 32 characters long and can contain letters, digits, and hyphens (-).
Description string
The description of the access configuration. The description can be up to 1024 characters in length.
DirectoryId Changes to this property will trigger replacement. string
The ID of the Directory.
ForceRemovePermissionPolicies bool
This parameter is used to force deletion permission_policies. Valid Value: true, false.

  • NOTE: The permission_policies will be removed automatically when the resource is deleted, please operate with caution. If there are left more permission policies in the access configuration, please remove them before deleting the access configuration.
PermissionPolicies List<Pulumi.AliCloud.CloudSso.Inputs.AccessConfigurationPermissionPolicy>
The Policy List. See permission_policies below.
RelayState string
The RelayState of the Access Configuration, Cloud SSO users use this access configuration to access the RD account, the initial access page address. Must be the Alibaba Cloud console page, the default is the console home page.
SessionDuration int
The SessionDuration of the Access Configuration. Unit: Seconds. Valid values: 900 to 43200.
AccessConfigurationId string
The ID of the Access Configuration.
AccessConfigurationName Changes to this property will trigger replacement. string
The name of the access configuration. The name can be up to 32 characters long and can contain letters, digits, and hyphens (-).
Description string
The description of the access configuration. The description can be up to 1024 characters in length.
DirectoryId Changes to this property will trigger replacement. string
The ID of the Directory.
ForceRemovePermissionPolicies bool
This parameter is used to force deletion permission_policies. Valid Value: true, false.

  • NOTE: The permission_policies will be removed automatically when the resource is deleted, please operate with caution. If there are left more permission policies in the access configuration, please remove them before deleting the access configuration.
PermissionPolicies []AccessConfigurationPermissionPolicyArgs
The Policy List. See permission_policies below.
RelayState string
The RelayState of the Access Configuration, Cloud SSO users use this access configuration to access the RD account, the initial access page address. Must be the Alibaba Cloud console page, the default is the console home page.
SessionDuration int
The SessionDuration of the Access Configuration. Unit: Seconds. Valid values: 900 to 43200.
accessConfigurationId String
The ID of the Access Configuration.
accessConfigurationName Changes to this property will trigger replacement. String
The name of the access configuration. The name can be up to 32 characters long and can contain letters, digits, and hyphens (-).
description String
The description of the access configuration. The description can be up to 1024 characters in length.
directoryId Changes to this property will trigger replacement. String
The ID of the Directory.
forceRemovePermissionPolicies Boolean
This parameter is used to force deletion permission_policies. Valid Value: true, false.

  • NOTE: The permission_policies will be removed automatically when the resource is deleted, please operate with caution. If there are left more permission policies in the access configuration, please remove them before deleting the access configuration.
permissionPolicies List<AccessConfigurationPermissionPolicy>
The Policy List. See permission_policies below.
relayState String
The RelayState of the Access Configuration, Cloud SSO users use this access configuration to access the RD account, the initial access page address. Must be the Alibaba Cloud console page, the default is the console home page.
sessionDuration Integer
The SessionDuration of the Access Configuration. Unit: Seconds. Valid values: 900 to 43200.
accessConfigurationId string
The ID of the Access Configuration.
accessConfigurationName Changes to this property will trigger replacement. string
The name of the access configuration. The name can be up to 32 characters long and can contain letters, digits, and hyphens (-).
description string
The description of the access configuration. The description can be up to 1024 characters in length.
directoryId Changes to this property will trigger replacement. string
The ID of the Directory.
forceRemovePermissionPolicies boolean
This parameter is used to force deletion permission_policies. Valid Value: true, false.

  • NOTE: The permission_policies will be removed automatically when the resource is deleted, please operate with caution. If there are left more permission policies in the access configuration, please remove them before deleting the access configuration.
permissionPolicies AccessConfigurationPermissionPolicy[]
The Policy List. See permission_policies below.
relayState string
The RelayState of the Access Configuration, Cloud SSO users use this access configuration to access the RD account, the initial access page address. Must be the Alibaba Cloud console page, the default is the console home page.
sessionDuration number
The SessionDuration of the Access Configuration. Unit: Seconds. Valid values: 900 to 43200.
access_configuration_id str
The ID of the Access Configuration.
access_configuration_name Changes to this property will trigger replacement. str
The name of the access configuration. The name can be up to 32 characters long and can contain letters, digits, and hyphens (-).
description str
The description of the access configuration. The description can be up to 1024 characters in length.
directory_id Changes to this property will trigger replacement. str
The ID of the Directory.
force_remove_permission_policies bool
This parameter is used to force deletion permission_policies. Valid Value: true, false.

  • NOTE: The permission_policies will be removed automatically when the resource is deleted, please operate with caution. If there are left more permission policies in the access configuration, please remove them before deleting the access configuration.
permission_policies Sequence[AccessConfigurationPermissionPolicyArgs]
The Policy List. See permission_policies below.
relay_state str
The RelayState of the Access Configuration, Cloud SSO users use this access configuration to access the RD account, the initial access page address. Must be the Alibaba Cloud console page, the default is the console home page.
session_duration int
The SessionDuration of the Access Configuration. Unit: Seconds. Valid values: 900 to 43200.
accessConfigurationId String
The ID of the Access Configuration.
accessConfigurationName Changes to this property will trigger replacement. String
The name of the access configuration. The name can be up to 32 characters long and can contain letters, digits, and hyphens (-).
description String
The description of the access configuration. The description can be up to 1024 characters in length.
directoryId Changes to this property will trigger replacement. String
The ID of the Directory.
forceRemovePermissionPolicies Boolean
This parameter is used to force deletion permission_policies. Valid Value: true, false.

  • NOTE: The permission_policies will be removed automatically when the resource is deleted, please operate with caution. If there are left more permission policies in the access configuration, please remove them before deleting the access configuration.
permissionPolicies List<Property Map>
The Policy List. See permission_policies below.
relayState String
The RelayState of the Access Configuration, Cloud SSO users use this access configuration to access the RD account, the initial access page address. Must be the Alibaba Cloud console page, the default is the console home page.
sessionDuration Number
The SessionDuration of the Access Configuration. Unit: Seconds. Valid values: 900 to 43200.

Supporting Types

AccessConfigurationPermissionPolicy
, AccessConfigurationPermissionPolicyArgs

PermissionPolicyName This property is required. string
The name of the policy.
PermissionPolicyType This property is required. string
The type of the policy. Valid values: System, Inline.
PermissionPolicyDocument string
The configurations of the inline policy. NOTE: If permission_policy_type is set to Inline, permission_policy_document is required.
PermissionPolicyName This property is required. string
The name of the policy.
PermissionPolicyType This property is required. string
The type of the policy. Valid values: System, Inline.
PermissionPolicyDocument string
The configurations of the inline policy. NOTE: If permission_policy_type is set to Inline, permission_policy_document is required.
permissionPolicyName This property is required. String
The name of the policy.
permissionPolicyType This property is required. String
The type of the policy. Valid values: System, Inline.
permissionPolicyDocument String
The configurations of the inline policy. NOTE: If permission_policy_type is set to Inline, permission_policy_document is required.
permissionPolicyName This property is required. string
The name of the policy.
permissionPolicyType This property is required. string
The type of the policy. Valid values: System, Inline.
permissionPolicyDocument string
The configurations of the inline policy. NOTE: If permission_policy_type is set to Inline, permission_policy_document is required.
permission_policy_name This property is required. str
The name of the policy.
permission_policy_type This property is required. str
The type of the policy. Valid values: System, Inline.
permission_policy_document str
The configurations of the inline policy. NOTE: If permission_policy_type is set to Inline, permission_policy_document is required.
permissionPolicyName This property is required. String
The name of the policy.
permissionPolicyType This property is required. String
The type of the policy. Valid values: System, Inline.
permissionPolicyDocument String
The configurations of the inline policy. NOTE: If permission_policy_type is set to Inline, permission_policy_document is required.

Import

Cloud SSO Access Configuration can be imported using the id, e.g.

$ pulumi import alicloud:cloudsso/accessConfiguration:AccessConfiguration example <directory_id>:<access_configuration_id>
Copy

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.