outscale.PolicyVersion
Explore with Pulumi AI
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.
- Policy
Orn string - The OUTSCALE Resource Name (ORN) of the policy. For more information, see Resource Identifiers.
- Policy
Version stringId - Set
As boolDefault - 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 theoutscale.User
oroutscale.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.
- Policy
Orn string - The OUTSCALE Resource Name (ORN) of the policy. For more information, see Resource Identifiers.
- Policy
Version stringId - Set
As boolDefault - 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 theoutscale.User
oroutscale.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.
- policy
Orn String - The OUTSCALE Resource Name (ORN) of the policy. For more information, see Resource Identifiers.
- policy
Version StringId - set
As BooleanDefault - 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 theoutscale.User
oroutscale.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.
- policy
Orn string - The OUTSCALE Resource Name (ORN) of the policy. For more information, see Resource Identifiers.
- policy
Version stringId - set
As booleanDefault - 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 theoutscale.User
oroutscale.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_ strid - set_
as_ booldefault - 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 theoutscale.User
oroutscale.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.
- policy
Orn String - The OUTSCALE Resource Name (ORN) of the policy. For more information, see Resource Identifiers.
- policy
Version StringId - set
As BooleanDefault - 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 theoutscale.User
oroutscale.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.
- Creation
Date string - The date and time (UTC) at which the version was created.
- Default
Version bool - If true, the version is the default one.
- Id string
- The provider-assigned unique ID for this managed resource.
- Version
Id 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.
- Creation
Date string - The date and time (UTC) at which the version was created.
- Default
Version bool - If true, the version is the default one.
- Id string
- The provider-assigned unique ID for this managed resource.
- Version
Id 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.
- creation
Date String - The date and time (UTC) at which the version was created.
- default
Version Boolean - If true, the version is the default one.
- id String
- The provider-assigned unique ID for this managed resource.
- version
Id 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.
- creation
Date string - The date and time (UTC) at which the version was created.
- default
Version boolean - If true, the version is the default one.
- id string
- The provider-assigned unique ID for this managed resource.
- version
Id 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.
- creation
Date String - The date and time (UTC) at which the version was created.
- default
Version Boolean - If true, the version is the default one.
- id String
- The provider-assigned unique ID for this managed resource.
- version
Id 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.
- 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.
- Creation
Date string - The date and time (UTC) at which the version was created.
- Default
Version 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.
- Policy
Orn string - The OUTSCALE Resource Name (ORN) of the policy. For more information, see Resource Identifiers.
- Policy
Version stringId - Set
As boolDefault - 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 theoutscale.User
oroutscale.UserGroup
resources. - Version
Id 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.
- Creation
Date string - The date and time (UTC) at which the version was created.
- Default
Version 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.
- Policy
Orn string - The OUTSCALE Resource Name (ORN) of the policy. For more information, see Resource Identifiers.
- Policy
Version stringId - Set
As boolDefault - 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 theoutscale.User
oroutscale.UserGroup
resources. - Version
Id 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.
- creation
Date String - The date and time (UTC) at which the version was created.
- default
Version 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.
- policy
Orn String - The OUTSCALE Resource Name (ORN) of the policy. For more information, see Resource Identifiers.
- policy
Version StringId - set
As BooleanDefault - 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 theoutscale.User
oroutscale.UserGroup
resources. - version
Id 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.
- creation
Date string - The date and time (UTC) at which the version was created.
- default
Version 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.
- policy
Orn string - The OUTSCALE Resource Name (ORN) of the policy. For more information, see Resource Identifiers.
- policy
Version stringId - set
As booleanDefault - 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 theoutscale.User
oroutscale.UserGroup
resources. - version
Id 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_ strid - set_
as_ booldefault - 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 theoutscale.User
oroutscale.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.
- creation
Date String - The date and time (UTC) at which the version was created.
- default
Version 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.
- policy
Orn String - The OUTSCALE Resource Name (ORN) of the policy. For more information, see Resource Identifiers.
- policy
Version StringId - set
As BooleanDefault - 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 theoutscale.User
oroutscale.UserGroup
resources. - version
Id 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.