opentelekomcloud.IdentityPasswordPolicyV3
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as opentelekomcloud from "@pulumi/opentelekomcloud";
const policy1 = new opentelekomcloud.IdentityPasswordPolicyV3("policy1", {
maximumConsecutiveIdenticalChars: 0,
minimumPasswordAge: 0,
minimumPasswordLength: 6,
numberOfRecentPasswordsDisallowed: 0,
passwordCharCombination: 3,
passwordNotUsernameOrInvert: true,
passwordValidityPeriod: 179,
});
import pulumi
import pulumi_opentelekomcloud as opentelekomcloud
policy1 = opentelekomcloud.IdentityPasswordPolicyV3("policy1",
maximum_consecutive_identical_chars=0,
minimum_password_age=0,
minimum_password_length=6,
number_of_recent_passwords_disallowed=0,
password_char_combination=3,
password_not_username_or_invert=True,
password_validity_period=179)
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/opentelekomcloud/opentelekomcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := opentelekomcloud.NewIdentityPasswordPolicyV3(ctx, "policy1", &opentelekomcloud.IdentityPasswordPolicyV3Args{
MaximumConsecutiveIdenticalChars: pulumi.Float64(0),
MinimumPasswordAge: pulumi.Float64(0),
MinimumPasswordLength: pulumi.Float64(6),
NumberOfRecentPasswordsDisallowed: pulumi.Float64(0),
PasswordCharCombination: pulumi.Float64(3),
PasswordNotUsernameOrInvert: pulumi.Bool(true),
PasswordValidityPeriod: pulumi.Float64(179),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Opentelekomcloud = Pulumi.Opentelekomcloud;
return await Deployment.RunAsync(() =>
{
var policy1 = new Opentelekomcloud.IdentityPasswordPolicyV3("policy1", new()
{
MaximumConsecutiveIdenticalChars = 0,
MinimumPasswordAge = 0,
MinimumPasswordLength = 6,
NumberOfRecentPasswordsDisallowed = 0,
PasswordCharCombination = 3,
PasswordNotUsernameOrInvert = true,
PasswordValidityPeriod = 179,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.opentelekomcloud.IdentityPasswordPolicyV3;
import com.pulumi.opentelekomcloud.IdentityPasswordPolicyV3Args;
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) {
var policy1 = new IdentityPasswordPolicyV3("policy1", IdentityPasswordPolicyV3Args.builder()
.maximumConsecutiveIdenticalChars(0)
.minimumPasswordAge(0)
.minimumPasswordLength(6)
.numberOfRecentPasswordsDisallowed(0)
.passwordCharCombination(3)
.passwordNotUsernameOrInvert(true)
.passwordValidityPeriod(179)
.build());
}
}
resources:
policy1:
type: opentelekomcloud:IdentityPasswordPolicyV3
properties:
maximumConsecutiveIdenticalChars: 0
minimumPasswordAge: 0
minimumPasswordLength: 6
numberOfRecentPasswordsDisallowed: 0
passwordCharCombination: 3
passwordNotUsernameOrInvert: true
passwordValidityPeriod: 179
Create IdentityPasswordPolicyV3 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IdentityPasswordPolicyV3(name: string, args?: IdentityPasswordPolicyV3Args, opts?: CustomResourceOptions);
@overload
def IdentityPasswordPolicyV3(resource_name: str,
args: Optional[IdentityPasswordPolicyV3Args] = None,
opts: Optional[ResourceOptions] = None)
@overload
def IdentityPasswordPolicyV3(resource_name: str,
opts: Optional[ResourceOptions] = None,
identity_password_policy_v3_id: Optional[str] = None,
maximum_consecutive_identical_chars: Optional[float] = None,
minimum_password_age: Optional[float] = None,
minimum_password_length: Optional[float] = None,
number_of_recent_passwords_disallowed: Optional[float] = None,
password_char_combination: Optional[float] = None,
password_not_username_or_invert: Optional[bool] = None,
password_validity_period: Optional[float] = None)
func NewIdentityPasswordPolicyV3(ctx *Context, name string, args *IdentityPasswordPolicyV3Args, opts ...ResourceOption) (*IdentityPasswordPolicyV3, error)
public IdentityPasswordPolicyV3(string name, IdentityPasswordPolicyV3Args? args = null, CustomResourceOptions? opts = null)
public IdentityPasswordPolicyV3(String name, IdentityPasswordPolicyV3Args args)
public IdentityPasswordPolicyV3(String name, IdentityPasswordPolicyV3Args args, CustomResourceOptions options)
type: opentelekomcloud:IdentityPasswordPolicyV3
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 IdentityPasswordPolicyV3Args
- 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 IdentityPasswordPolicyV3Args
- 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 IdentityPasswordPolicyV3Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IdentityPasswordPolicyV3Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IdentityPasswordPolicyV3Args
- 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 identityPasswordPolicyV3Resource = new Opentelekomcloud.IdentityPasswordPolicyV3("identityPasswordPolicyV3Resource", new()
{
IdentityPasswordPolicyV3Id = "string",
MaximumConsecutiveIdenticalChars = 0,
MinimumPasswordAge = 0,
MinimumPasswordLength = 0,
NumberOfRecentPasswordsDisallowed = 0,
PasswordCharCombination = 0,
PasswordNotUsernameOrInvert = false,
PasswordValidityPeriod = 0,
});
example, err := opentelekomcloud.NewIdentityPasswordPolicyV3(ctx, "identityPasswordPolicyV3Resource", &opentelekomcloud.IdentityPasswordPolicyV3Args{
IdentityPasswordPolicyV3Id: pulumi.String("string"),
MaximumConsecutiveIdenticalChars: pulumi.Float64(0),
MinimumPasswordAge: pulumi.Float64(0),
MinimumPasswordLength: pulumi.Float64(0),
NumberOfRecentPasswordsDisallowed: pulumi.Float64(0),
PasswordCharCombination: pulumi.Float64(0),
PasswordNotUsernameOrInvert: pulumi.Bool(false),
PasswordValidityPeriod: pulumi.Float64(0),
})
var identityPasswordPolicyV3Resource = new IdentityPasswordPolicyV3("identityPasswordPolicyV3Resource", IdentityPasswordPolicyV3Args.builder()
.identityPasswordPolicyV3Id("string")
.maximumConsecutiveIdenticalChars(0)
.minimumPasswordAge(0)
.minimumPasswordLength(0)
.numberOfRecentPasswordsDisallowed(0)
.passwordCharCombination(0)
.passwordNotUsernameOrInvert(false)
.passwordValidityPeriod(0)
.build());
identity_password_policy_v3_resource = opentelekomcloud.IdentityPasswordPolicyV3("identityPasswordPolicyV3Resource",
identity_password_policy_v3_id="string",
maximum_consecutive_identical_chars=0,
minimum_password_age=0,
minimum_password_length=0,
number_of_recent_passwords_disallowed=0,
password_char_combination=0,
password_not_username_or_invert=False,
password_validity_period=0)
const identityPasswordPolicyV3Resource = new opentelekomcloud.IdentityPasswordPolicyV3("identityPasswordPolicyV3Resource", {
identityPasswordPolicyV3Id: "string",
maximumConsecutiveIdenticalChars: 0,
minimumPasswordAge: 0,
minimumPasswordLength: 0,
numberOfRecentPasswordsDisallowed: 0,
passwordCharCombination: 0,
passwordNotUsernameOrInvert: false,
passwordValidityPeriod: 0,
});
type: opentelekomcloud:IdentityPasswordPolicyV3
properties:
identityPasswordPolicyV3Id: string
maximumConsecutiveIdenticalChars: 0
minimumPasswordAge: 0
minimumPasswordLength: 0
numberOfRecentPasswordsDisallowed: 0
passwordCharCombination: 0
passwordNotUsernameOrInvert: false
passwordValidityPeriod: 0
IdentityPasswordPolicyV3 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 IdentityPasswordPolicyV3 resource accepts the following input properties:
- Identity
Password stringPolicy V3Id - The ID of account password policy, which is the same as the domain ID.
- Maximum
Consecutive doubleIdentical Chars - Maximum number of times that a character is allowed to
consecutively present in a password. Value range:
0-32
. - Minimum
Password doubleAge - Minimum period (minutes) after which users are allowed to make a password change.
Value range:
0-1440
. - Minimum
Password doubleLength - Minimum number of characters that a password must contain. Value range:
6-32
. Default:8
. - Number
Of doubleRecent Passwords Disallowed - Number of previously used passwords that are not allowed. Value range:
0-10
. Default:1
. - Password
Char doubleCombination - Minimum number of character types that a password must contain. Value range: 2-4.
- Password
Not boolUsername Or Invert - Indicates whether the password can be the username or the username spelled backwards.
Default:
true
. - Password
Validity doublePeriod - Password validity period (days). Value range: 0-180. Value 0 indicates that this requirement does not apply.
- Identity
Password stringPolicy V3Id - The ID of account password policy, which is the same as the domain ID.
- Maximum
Consecutive float64Identical Chars - Maximum number of times that a character is allowed to
consecutively present in a password. Value range:
0-32
. - Minimum
Password float64Age - Minimum period (minutes) after which users are allowed to make a password change.
Value range:
0-1440
. - Minimum
Password float64Length - Minimum number of characters that a password must contain. Value range:
6-32
. Default:8
. - Number
Of float64Recent Passwords Disallowed - Number of previously used passwords that are not allowed. Value range:
0-10
. Default:1
. - Password
Char float64Combination - Minimum number of character types that a password must contain. Value range: 2-4.
- Password
Not boolUsername Or Invert - Indicates whether the password can be the username or the username spelled backwards.
Default:
true
. - Password
Validity float64Period - Password validity period (days). Value range: 0-180. Value 0 indicates that this requirement does not apply.
- identity
Password StringPolicy V3Id - The ID of account password policy, which is the same as the domain ID.
- maximum
Consecutive DoubleIdentical Chars - Maximum number of times that a character is allowed to
consecutively present in a password. Value range:
0-32
. - minimum
Password DoubleAge - Minimum period (minutes) after which users are allowed to make a password change.
Value range:
0-1440
. - minimum
Password DoubleLength - Minimum number of characters that a password must contain. Value range:
6-32
. Default:8
. - number
Of DoubleRecent Passwords Disallowed - Number of previously used passwords that are not allowed. Value range:
0-10
. Default:1
. - password
Char DoubleCombination - Minimum number of character types that a password must contain. Value range: 2-4.
- password
Not BooleanUsername Or Invert - Indicates whether the password can be the username or the username spelled backwards.
Default:
true
. - password
Validity DoublePeriod - Password validity period (days). Value range: 0-180. Value 0 indicates that this requirement does not apply.
- identity
Password stringPolicy V3Id - The ID of account password policy, which is the same as the domain ID.
- maximum
Consecutive numberIdentical Chars - Maximum number of times that a character is allowed to
consecutively present in a password. Value range:
0-32
. - minimum
Password numberAge - Minimum period (minutes) after which users are allowed to make a password change.
Value range:
0-1440
. - minimum
Password numberLength - Minimum number of characters that a password must contain. Value range:
6-32
. Default:8
. - number
Of numberRecent Passwords Disallowed - Number of previously used passwords that are not allowed. Value range:
0-10
. Default:1
. - password
Char numberCombination - Minimum number of character types that a password must contain. Value range: 2-4.
- password
Not booleanUsername Or Invert - Indicates whether the password can be the username or the username spelled backwards.
Default:
true
. - password
Validity numberPeriod - Password validity period (days). Value range: 0-180. Value 0 indicates that this requirement does not apply.
- identity_
password_ strpolicy_ v3_ id - The ID of account password policy, which is the same as the domain ID.
- maximum_
consecutive_ floatidentical_ chars - Maximum number of times that a character is allowed to
consecutively present in a password. Value range:
0-32
. - minimum_
password_ floatage - Minimum period (minutes) after which users are allowed to make a password change.
Value range:
0-1440
. - minimum_
password_ floatlength - Minimum number of characters that a password must contain. Value range:
6-32
. Default:8
. - number_
of_ floatrecent_ passwords_ disallowed - Number of previously used passwords that are not allowed. Value range:
0-10
. Default:1
. - password_
char_ floatcombination - Minimum number of character types that a password must contain. Value range: 2-4.
- password_
not_ boolusername_ or_ invert - Indicates whether the password can be the username or the username spelled backwards.
Default:
true
. - password_
validity_ floatperiod - Password validity period (days). Value range: 0-180. Value 0 indicates that this requirement does not apply.
- identity
Password StringPolicy V3Id - The ID of account password policy, which is the same as the domain ID.
- maximum
Consecutive NumberIdentical Chars - Maximum number of times that a character is allowed to
consecutively present in a password. Value range:
0-32
. - minimum
Password NumberAge - Minimum period (minutes) after which users are allowed to make a password change.
Value range:
0-1440
. - minimum
Password NumberLength - Minimum number of characters that a password must contain. Value range:
6-32
. Default:8
. - number
Of NumberRecent Passwords Disallowed - Number of previously used passwords that are not allowed. Value range:
0-10
. Default:1
. - password
Char NumberCombination - Minimum number of character types that a password must contain. Value range: 2-4.
- password
Not BooleanUsername Or Invert - Indicates whether the password can be the username or the username spelled backwards.
Default:
true
. - password
Validity NumberPeriod - Password validity period (days). Value range: 0-180. Value 0 indicates that this requirement does not apply.
Outputs
All input properties are implicitly available as output properties. Additionally, the IdentityPasswordPolicyV3 resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Maximum
Password doubleLength - The maximum number of characters that a password can contain.
- Password
Requirements string
- Id string
- The provider-assigned unique ID for this managed resource.
- Maximum
Password float64Length - The maximum number of characters that a password can contain.
- Password
Requirements string
- id String
- The provider-assigned unique ID for this managed resource.
- maximum
Password DoubleLength - The maximum number of characters that a password can contain.
- password
Requirements String
- id string
- The provider-assigned unique ID for this managed resource.
- maximum
Password numberLength - The maximum number of characters that a password can contain.
- password
Requirements string
- id str
- The provider-assigned unique ID for this managed resource.
- maximum_
password_ floatlength - The maximum number of characters that a password can contain.
- password_
requirements str
- id String
- The provider-assigned unique ID for this managed resource.
- maximum
Password NumberLength - The maximum number of characters that a password can contain.
- password
Requirements String
Look up Existing IdentityPasswordPolicyV3 Resource
Get an existing IdentityPasswordPolicyV3 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?: IdentityPasswordPolicyV3State, opts?: CustomResourceOptions): IdentityPasswordPolicyV3
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
identity_password_policy_v3_id: Optional[str] = None,
maximum_consecutive_identical_chars: Optional[float] = None,
maximum_password_length: Optional[float] = None,
minimum_password_age: Optional[float] = None,
minimum_password_length: Optional[float] = None,
number_of_recent_passwords_disallowed: Optional[float] = None,
password_char_combination: Optional[float] = None,
password_not_username_or_invert: Optional[bool] = None,
password_requirements: Optional[str] = None,
password_validity_period: Optional[float] = None) -> IdentityPasswordPolicyV3
func GetIdentityPasswordPolicyV3(ctx *Context, name string, id IDInput, state *IdentityPasswordPolicyV3State, opts ...ResourceOption) (*IdentityPasswordPolicyV3, error)
public static IdentityPasswordPolicyV3 Get(string name, Input<string> id, IdentityPasswordPolicyV3State? state, CustomResourceOptions? opts = null)
public static IdentityPasswordPolicyV3 get(String name, Output<String> id, IdentityPasswordPolicyV3State state, CustomResourceOptions options)
resources: _: type: opentelekomcloud:IdentityPasswordPolicyV3 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.
- Identity
Password stringPolicy V3Id - The ID of account password policy, which is the same as the domain ID.
- Maximum
Consecutive doubleIdentical Chars - Maximum number of times that a character is allowed to
consecutively present in a password. Value range:
0-32
. - Maximum
Password doubleLength - The maximum number of characters that a password can contain.
- Minimum
Password doubleAge - Minimum period (minutes) after which users are allowed to make a password change.
Value range:
0-1440
. - Minimum
Password doubleLength - Minimum number of characters that a password must contain. Value range:
6-32
. Default:8
. - Number
Of doubleRecent Passwords Disallowed - Number of previously used passwords that are not allowed. Value range:
0-10
. Default:1
. - Password
Char doubleCombination - Minimum number of character types that a password must contain. Value range: 2-4.
- Password
Not boolUsername Or Invert - Indicates whether the password can be the username or the username spelled backwards.
Default:
true
. - Password
Requirements string - Password
Validity doublePeriod - Password validity period (days). Value range: 0-180. Value 0 indicates that this requirement does not apply.
- Identity
Password stringPolicy V3Id - The ID of account password policy, which is the same as the domain ID.
- Maximum
Consecutive float64Identical Chars - Maximum number of times that a character is allowed to
consecutively present in a password. Value range:
0-32
. - Maximum
Password float64Length - The maximum number of characters that a password can contain.
- Minimum
Password float64Age - Minimum period (minutes) after which users are allowed to make a password change.
Value range:
0-1440
. - Minimum
Password float64Length - Minimum number of characters that a password must contain. Value range:
6-32
. Default:8
. - Number
Of float64Recent Passwords Disallowed - Number of previously used passwords that are not allowed. Value range:
0-10
. Default:1
. - Password
Char float64Combination - Minimum number of character types that a password must contain. Value range: 2-4.
- Password
Not boolUsername Or Invert - Indicates whether the password can be the username or the username spelled backwards.
Default:
true
. - Password
Requirements string - Password
Validity float64Period - Password validity period (days). Value range: 0-180. Value 0 indicates that this requirement does not apply.
- identity
Password StringPolicy V3Id - The ID of account password policy, which is the same as the domain ID.
- maximum
Consecutive DoubleIdentical Chars - Maximum number of times that a character is allowed to
consecutively present in a password. Value range:
0-32
. - maximum
Password DoubleLength - The maximum number of characters that a password can contain.
- minimum
Password DoubleAge - Minimum period (minutes) after which users are allowed to make a password change.
Value range:
0-1440
. - minimum
Password DoubleLength - Minimum number of characters that a password must contain. Value range:
6-32
. Default:8
. - number
Of DoubleRecent Passwords Disallowed - Number of previously used passwords that are not allowed. Value range:
0-10
. Default:1
. - password
Char DoubleCombination - Minimum number of character types that a password must contain. Value range: 2-4.
- password
Not BooleanUsername Or Invert - Indicates whether the password can be the username or the username spelled backwards.
Default:
true
. - password
Requirements String - password
Validity DoublePeriod - Password validity period (days). Value range: 0-180. Value 0 indicates that this requirement does not apply.
- identity
Password stringPolicy V3Id - The ID of account password policy, which is the same as the domain ID.
- maximum
Consecutive numberIdentical Chars - Maximum number of times that a character is allowed to
consecutively present in a password. Value range:
0-32
. - maximum
Password numberLength - The maximum number of characters that a password can contain.
- minimum
Password numberAge - Minimum period (minutes) after which users are allowed to make a password change.
Value range:
0-1440
. - minimum
Password numberLength - Minimum number of characters that a password must contain. Value range:
6-32
. Default:8
. - number
Of numberRecent Passwords Disallowed - Number of previously used passwords that are not allowed. Value range:
0-10
. Default:1
. - password
Char numberCombination - Minimum number of character types that a password must contain. Value range: 2-4.
- password
Not booleanUsername Or Invert - Indicates whether the password can be the username or the username spelled backwards.
Default:
true
. - password
Requirements string - password
Validity numberPeriod - Password validity period (days). Value range: 0-180. Value 0 indicates that this requirement does not apply.
- identity_
password_ strpolicy_ v3_ id - The ID of account password policy, which is the same as the domain ID.
- maximum_
consecutive_ floatidentical_ chars - Maximum number of times that a character is allowed to
consecutively present in a password. Value range:
0-32
. - maximum_
password_ floatlength - The maximum number of characters that a password can contain.
- minimum_
password_ floatage - Minimum period (minutes) after which users are allowed to make a password change.
Value range:
0-1440
. - minimum_
password_ floatlength - Minimum number of characters that a password must contain. Value range:
6-32
. Default:8
. - number_
of_ floatrecent_ passwords_ disallowed - Number of previously used passwords that are not allowed. Value range:
0-10
. Default:1
. - password_
char_ floatcombination - Minimum number of character types that a password must contain. Value range: 2-4.
- password_
not_ boolusername_ or_ invert - Indicates whether the password can be the username or the username spelled backwards.
Default:
true
. - password_
requirements str - password_
validity_ floatperiod - Password validity period (days). Value range: 0-180. Value 0 indicates that this requirement does not apply.
- identity
Password StringPolicy V3Id - The ID of account password policy, which is the same as the domain ID.
- maximum
Consecutive NumberIdentical Chars - Maximum number of times that a character is allowed to
consecutively present in a password. Value range:
0-32
. - maximum
Password NumberLength - The maximum number of characters that a password can contain.
- minimum
Password NumberAge - Minimum period (minutes) after which users are allowed to make a password change.
Value range:
0-1440
. - minimum
Password NumberLength - Minimum number of characters that a password must contain. Value range:
6-32
. Default:8
. - number
Of NumberRecent Passwords Disallowed - Number of previously used passwords that are not allowed. Value range:
0-10
. Default:1
. - password
Char NumberCombination - Minimum number of character types that a password must contain. Value range: 2-4.
- password
Not BooleanUsername Or Invert - Indicates whether the password can be the username or the username spelled backwards.
Default:
true
. - password
Requirements String - password
Validity NumberPeriod - Password validity period (days). Value range: 0-180. Value 0 indicates that this requirement does not apply.
Import
Identity password policy can be imported using the account ID or domain ID, e.g.
bash
$ pulumi import opentelekomcloud:index/identityPasswordPolicyV3:IdentityPasswordPolicyV3 example <ID>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- opentelekomcloud opentelekomcloud/terraform-provider-opentelekomcloud
- License
- Notes
- This Pulumi package is based on the
opentelekomcloud
Terraform Provider.