1. Packages
  2. Outscale Provider
  3. API Docs
  4. PolicyVersion
outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale

outscale.PolicyVersion

Explore with Pulumi AI

outscale logo
outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale

    Manages a policy version.

    Note At creation, the initial version of a policy is set to ‘V1’ by default.

    For more information on this resource, see the User Guide.
    For more information on this resource actions, see the API documentation.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fs from "fs";
    import * as outscale from "@pulumi/outscale";
    
    const policy2_version_02 = new outscale.PolicyVersion("policy2-version-02", {
        policyOrn: outscale_policy["policy-2"].orn,
        document: fs.readFileSync("policy.json", "utf8"),
        setAsDefault: true,
    });
    
    import pulumi
    import pulumi_outscale as outscale
    
    policy2_version_02 = outscale.PolicyVersion("policy2-version-02",
        policy_orn=outscale_policy["policy-2"]["orn"],
        document=(lambda path: open(path).read())("policy.json"),
        set_as_default=True)
    
    package main
    
    import (
    	"os"
    
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/outscale/outscale"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func readFileOrPanic(path string) pulumi.StringPtrInput {
    	data, err := os.ReadFile(path)
    	if err != nil {
    		panic(err.Error())
    	}
    	return pulumi.String(string(data))
    }
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := outscale.NewPolicyVersion(ctx, "policy2-version-02", &outscale.PolicyVersionArgs{
    			PolicyOrn:    pulumi.Any(outscale_policy.Policy2.Orn),
    			Document:     pulumi.String(readFileOrPanic("policy.json")),
    			SetAsDefault: pulumi.Bool(true),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.IO;
    using System.Linq;
    using Pulumi;
    using Outscale = Pulumi.Outscale;
    
    return await Deployment.RunAsync(() => 
    {
        var policy2_version_02 = new Outscale.PolicyVersion("policy2-version-02", new()
        {
            PolicyOrn = outscale_policy.Policy_2.Orn,
            Document = File.ReadAllText("policy.json"),
            SetAsDefault = true,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.outscale.PolicyVersion;
    import com.pulumi.outscale.PolicyVersionArgs;
    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 policy2_version_02 = new PolicyVersion("policy2-version-02", PolicyVersionArgs.builder()
                .policyOrn(outscale_policy.policy-2().orn())
                .document(Files.readString(Paths.get("policy.json")))
                .setAsDefault(true)
                .build());
    
        }
    }
    
    resources:
      policy2-version-02:
        type: outscale:PolicyVersion
        properties:
          policyOrn: ${outscale_policy"policy-2"[%!s(MISSING)].orn}
          document:
            fn::readFile: policy.json
          setAsDefault: true
    

    Create PolicyVersion Resource

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

    Constructor syntax

    new PolicyVersion(name: string, args: PolicyVersionArgs, opts?: CustomResourceOptions);
    @overload
    def PolicyVersion(resource_name: str,
                      args: PolicyVersionArgs,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def PolicyVersion(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      document: Optional[str] = None,
                      policy_orn: Optional[str] = None,
                      policy_version_id: Optional[str] = None,
                      set_as_default: Optional[bool] = None)
    func NewPolicyVersion(ctx *Context, name string, args PolicyVersionArgs, opts ...ResourceOption) (*PolicyVersion, error)
    public PolicyVersion(string name, PolicyVersionArgs args, CustomResourceOptions? opts = null)
    public PolicyVersion(String name, PolicyVersionArgs args)
    public PolicyVersion(String name, PolicyVersionArgs args, CustomResourceOptions options)
    
    type: outscale:PolicyVersion
    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 PolicyVersionArgs
    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 PolicyVersionArgs
    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 PolicyVersionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PolicyVersionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PolicyVersionArgs
    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 policyVersionResource = new Outscale.PolicyVersion("policyVersionResource", new()
    {
        Document = "string",
        PolicyOrn = "string",
        PolicyVersionId = "string",
        SetAsDefault = false,
    });
    
    example, err := outscale.NewPolicyVersion(ctx, "policyVersionResource", &outscale.PolicyVersionArgs{
    Document: pulumi.String("string"),
    PolicyOrn: pulumi.String("string"),
    PolicyVersionId: pulumi.String("string"),
    SetAsDefault: pulumi.Bool(false),
    })
    
    var policyVersionResource = new PolicyVersion("policyVersionResource", PolicyVersionArgs.builder()
        .document("string")
        .policyOrn("string")
        .policyVersionId("string")
        .setAsDefault(false)
        .build());
    
    policy_version_resource = outscale.PolicyVersion("policyVersionResource",
        document="string",
        policy_orn="string",
        policy_version_id="string",
        set_as_default=False)
    
    const policyVersionResource = new outscale.PolicyVersion("policyVersionResource", {
        document: "string",
        policyOrn: "string",
        policyVersionId: "string",
        setAsDefault: false,
    });
    
    type: outscale:PolicyVersion
    properties:
        document: string
        policyOrn: string
        policyVersionId: string
        setAsDefault: false
    

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

    Document string
    The policy document, corresponding to a JSON string that contains the policy. For more information, see EIM Reference Information and EIM Policy Generator.
    PolicyOrn string
    The OUTSCALE Resource Name (ORN) of the policy. For more information, see Resource Identifiers.
    PolicyVersionId string
    SetAsDefault bool
    If set to true, the new policy version is set as the default version, meaning it becomes the active one. Otherwise, the new policy version is not actually active until the default_version_id is specified in the outscale.User or outscale.UserGroup resources.
    Document string
    The policy document, corresponding to a JSON string that contains the policy. For more information, see EIM Reference Information and EIM Policy Generator.
    PolicyOrn string
    The OUTSCALE Resource Name (ORN) of the policy. For more information, see Resource Identifiers.
    PolicyVersionId string
    SetAsDefault bool
    If set to true, the new policy version is set as the default version, meaning it becomes the active one. Otherwise, the new policy version is not actually active until the default_version_id is specified in the outscale.User or outscale.UserGroup resources.
    document String
    The policy document, corresponding to a JSON string that contains the policy. For more information, see EIM Reference Information and EIM Policy Generator.
    policyOrn String
    The OUTSCALE Resource Name (ORN) of the policy. For more information, see Resource Identifiers.
    policyVersionId String
    setAsDefault Boolean
    If set to true, the new policy version is set as the default version, meaning it becomes the active one. Otherwise, the new policy version is not actually active until the default_version_id is specified in the outscale.User or outscale.UserGroup resources.
    document string
    The policy document, corresponding to a JSON string that contains the policy. For more information, see EIM Reference Information and EIM Policy Generator.
    policyOrn string
    The OUTSCALE Resource Name (ORN) of the policy. For more information, see Resource Identifiers.
    policyVersionId string
    setAsDefault boolean
    If set to true, the new policy version is set as the default version, meaning it becomes the active one. Otherwise, the new policy version is not actually active until the default_version_id is specified in the outscale.User or outscale.UserGroup resources.
    document str
    The policy document, corresponding to a JSON string that contains the policy. For more information, see EIM Reference Information and EIM Policy Generator.
    policy_orn str
    The OUTSCALE Resource Name (ORN) of the policy. For more information, see Resource Identifiers.
    policy_version_id str
    set_as_default bool
    If set to true, the new policy version is set as the default version, meaning it becomes the active one. Otherwise, the new policy version is not actually active until the default_version_id is specified in the outscale.User or outscale.UserGroup resources.
    document String
    The policy document, corresponding to a JSON string that contains the policy. For more information, see EIM Reference Information and EIM Policy Generator.
    policyOrn String
    The OUTSCALE Resource Name (ORN) of the policy. For more information, see Resource Identifiers.
    policyVersionId String
    setAsDefault Boolean
    If set to true, the new policy version is set as the default version, meaning it becomes the active one. Otherwise, the new policy version is not actually active until the default_version_id is specified in the outscale.User or outscale.UserGroup resources.

    Outputs

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

    Body string
    The policy document, corresponding to a JSON string that contains the policy. For more information, see EIM Reference Information and EIM Policy Generator.
    CreationDate string
    The date and time (UTC) at which the version was created.
    DefaultVersion bool
    If true, the version is the default one.
    Id string
    The provider-assigned unique ID for this managed resource.
    VersionId string
    The ID of the version.
    Body string
    The policy document, corresponding to a JSON string that contains the policy. For more information, see EIM Reference Information and EIM Policy Generator.
    CreationDate string
    The date and time (UTC) at which the version was created.
    DefaultVersion bool
    If true, the version is the default one.
    Id string
    The provider-assigned unique ID for this managed resource.
    VersionId string
    The ID of the version.
    body String
    The policy document, corresponding to a JSON string that contains the policy. For more information, see EIM Reference Information and EIM Policy Generator.
    creationDate String
    The date and time (UTC) at which the version was created.
    defaultVersion Boolean
    If true, the version is the default one.
    id String
    The provider-assigned unique ID for this managed resource.
    versionId String
    The ID of the version.
    body string
    The policy document, corresponding to a JSON string that contains the policy. For more information, see EIM Reference Information and EIM Policy Generator.
    creationDate string
    The date and time (UTC) at which the version was created.
    defaultVersion boolean
    If true, the version is the default one.
    id string
    The provider-assigned unique ID for this managed resource.
    versionId string
    The ID of the version.
    body str
    The policy document, corresponding to a JSON string that contains the policy. For more information, see EIM Reference Information and EIM Policy Generator.
    creation_date str
    The date and time (UTC) at which the version was created.
    default_version bool
    If true, the version is the default one.
    id str
    The provider-assigned unique ID for this managed resource.
    version_id str
    The ID of the version.
    body String
    The policy document, corresponding to a JSON string that contains the policy. For more information, see EIM Reference Information and EIM Policy Generator.
    creationDate String
    The date and time (UTC) at which the version was created.
    defaultVersion Boolean
    If true, the version is the default one.
    id String
    The provider-assigned unique ID for this managed resource.
    versionId String
    The ID of the version.

    Look up Existing PolicyVersion Resource

    Get an existing PolicyVersion 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?: PolicyVersionState, opts?: CustomResourceOptions): PolicyVersion
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            body: Optional[str] = None,
            creation_date: Optional[str] = None,
            default_version: Optional[bool] = None,
            document: Optional[str] = None,
            policy_orn: Optional[str] = None,
            policy_version_id: Optional[str] = None,
            set_as_default: Optional[bool] = None,
            version_id: Optional[str] = None) -> PolicyVersion
    func GetPolicyVersion(ctx *Context, name string, id IDInput, state *PolicyVersionState, opts ...ResourceOption) (*PolicyVersion, error)
    public static PolicyVersion Get(string name, Input<string> id, PolicyVersionState? state, CustomResourceOptions? opts = null)
    public static PolicyVersion get(String name, Output<String> id, PolicyVersionState state, CustomResourceOptions options)
    resources:  _:    type: outscale:PolicyVersion    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.
    The following state arguments are supported:
    Body string
    The policy document, corresponding to a JSON string that contains the policy. For more information, see EIM Reference Information and EIM Policy Generator.
    CreationDate string
    The date and time (UTC) at which the version was created.
    DefaultVersion bool
    If true, the version is the default one.
    Document string
    The policy document, corresponding to a JSON string that contains the policy. For more information, see EIM Reference Information and EIM Policy Generator.
    PolicyOrn string
    The OUTSCALE Resource Name (ORN) of the policy. For more information, see Resource Identifiers.
    PolicyVersionId string
    SetAsDefault bool
    If set to true, the new policy version is set as the default version, meaning it becomes the active one. Otherwise, the new policy version is not actually active until the default_version_id is specified in the outscale.User or outscale.UserGroup resources.
    VersionId string
    The ID of the version.
    Body string
    The policy document, corresponding to a JSON string that contains the policy. For more information, see EIM Reference Information and EIM Policy Generator.
    CreationDate string
    The date and time (UTC) at which the version was created.
    DefaultVersion bool
    If true, the version is the default one.
    Document string
    The policy document, corresponding to a JSON string that contains the policy. For more information, see EIM Reference Information and EIM Policy Generator.
    PolicyOrn string
    The OUTSCALE Resource Name (ORN) of the policy. For more information, see Resource Identifiers.
    PolicyVersionId string
    SetAsDefault bool
    If set to true, the new policy version is set as the default version, meaning it becomes the active one. Otherwise, the new policy version is not actually active until the default_version_id is specified in the outscale.User or outscale.UserGroup resources.
    VersionId string
    The ID of the version.
    body String
    The policy document, corresponding to a JSON string that contains the policy. For more information, see EIM Reference Information and EIM Policy Generator.
    creationDate String
    The date and time (UTC) at which the version was created.
    defaultVersion Boolean
    If true, the version is the default one.
    document String
    The policy document, corresponding to a JSON string that contains the policy. For more information, see EIM Reference Information and EIM Policy Generator.
    policyOrn String
    The OUTSCALE Resource Name (ORN) of the policy. For more information, see Resource Identifiers.
    policyVersionId String
    setAsDefault Boolean
    If set to true, the new policy version is set as the default version, meaning it becomes the active one. Otherwise, the new policy version is not actually active until the default_version_id is specified in the outscale.User or outscale.UserGroup resources.
    versionId String
    The ID of the version.
    body string
    The policy document, corresponding to a JSON string that contains the policy. For more information, see EIM Reference Information and EIM Policy Generator.
    creationDate string
    The date and time (UTC) at which the version was created.
    defaultVersion boolean
    If true, the version is the default one.
    document string
    The policy document, corresponding to a JSON string that contains the policy. For more information, see EIM Reference Information and EIM Policy Generator.
    policyOrn string
    The OUTSCALE Resource Name (ORN) of the policy. For more information, see Resource Identifiers.
    policyVersionId string
    setAsDefault boolean
    If set to true, the new policy version is set as the default version, meaning it becomes the active one. Otherwise, the new policy version is not actually active until the default_version_id is specified in the outscale.User or outscale.UserGroup resources.
    versionId string
    The ID of the version.
    body str
    The policy document, corresponding to a JSON string that contains the policy. For more information, see EIM Reference Information and EIM Policy Generator.
    creation_date str
    The date and time (UTC) at which the version was created.
    default_version bool
    If true, the version is the default one.
    document str
    The policy document, corresponding to a JSON string that contains the policy. For more information, see EIM Reference Information and EIM Policy Generator.
    policy_orn str
    The OUTSCALE Resource Name (ORN) of the policy. For more information, see Resource Identifiers.
    policy_version_id str
    set_as_default bool
    If set to true, the new policy version is set as the default version, meaning it becomes the active one. Otherwise, the new policy version is not actually active until the default_version_id is specified in the outscale.User or outscale.UserGroup resources.
    version_id str
    The ID of the version.
    body String
    The policy document, corresponding to a JSON string that contains the policy. For more information, see EIM Reference Information and EIM Policy Generator.
    creationDate String
    The date and time (UTC) at which the version was created.
    defaultVersion Boolean
    If true, the version is the default one.
    document String
    The policy document, corresponding to a JSON string that contains the policy. For more information, see EIM Reference Information and EIM Policy Generator.
    policyOrn String
    The OUTSCALE Resource Name (ORN) of the policy. For more information, see Resource Identifiers.
    policyVersionId String
    setAsDefault Boolean
    If set to true, the new policy version is set as the default version, meaning it becomes the active one. Otherwise, the new policy version is not actually active until the default_version_id is specified in the outscale.User or outscale.UserGroup resources.
    versionId String
    The ID of the version.

    Package Details

    Repository
    outscale outscale/terraform-provider-outscale
    License
    Notes
    This Pulumi package is based on the outscale Terraform Provider.
    outscale logo
    outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale