published on Thursday, Sep 10, 2026 by Pulumi
published on Thursday, Sep 10, 2026 by Pulumi
Resource for managing an AWS Resilience Hub V2 System.
A system represents a business application or platform that delivers value to your organization. Systems contain user journeys and services, and serve as the top-level container for organizing your resilience posture.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.resiliencehub.V2System("example", {name: "example-system"});
import pulumi
import pulumi_aws as aws
example = aws.resiliencehub.V2System("example", name="example-system")
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/resiliencehub"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := resiliencehub.NewV2System(ctx, "example", &resiliencehub.V2SystemArgs{
Name: pulumi.String("example-system"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.ResilienceHub.V2System("example", new()
{
Name = "example-system",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.resiliencehub.V2System;
import com.pulumi.aws.resiliencehub.V2SystemArgs;
import java.util.ArrayList;
import java.util.Arrays;
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 example = new V2System("example", V2SystemArgs.builder()
.name("example-system")
.build());
}
}
resources:
example:
type: aws:resiliencehub:V2System
properties:
name: example-system
pulumi {
required_providers {
aws = {
source = "pulumi/aws"
}
}
}
resource "aws_resiliencehub_v2system" "example" {
name = "example-system"
}
With Sharing Enabled
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.resiliencehub.V2System("example", {
name: "example-system",
description: "Production system grouping",
sharingEnabled: true,
tags: {
Environment: "production",
},
});
import pulumi
import pulumi_aws as aws
example = aws.resiliencehub.V2System("example",
name="example-system",
description="Production system grouping",
sharing_enabled=True,
tags={
"Environment": "production",
})
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/resiliencehub"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := resiliencehub.NewV2System(ctx, "example", &resiliencehub.V2SystemArgs{
Name: pulumi.String("example-system"),
Description: pulumi.String("Production system grouping"),
SharingEnabled: pulumi.Bool(true),
Tags: pulumi.StringMap{
"Environment": pulumi.String("production"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.ResilienceHub.V2System("example", new()
{
Name = "example-system",
Description = "Production system grouping",
SharingEnabled = true,
Tags =
{
{ "Environment", "production" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.resiliencehub.V2System;
import com.pulumi.aws.resiliencehub.V2SystemArgs;
import java.util.ArrayList;
import java.util.Arrays;
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 example = new V2System("example", V2SystemArgs.builder()
.name("example-system")
.description("Production system grouping")
.sharingEnabled(true)
.tags(Map.of("Environment", "production"))
.build());
}
}
resources:
example:
type: aws:resiliencehub:V2System
properties:
name: example-system
description: Production system grouping
sharingEnabled: true
tags:
Environment: production
pulumi {
required_providers {
aws = {
source = "pulumi/aws"
}
}
}
resource "aws_resiliencehub_v2system" "example" {
name = "example-system"
description = "Production system grouping"
sharing_enabled = true
tags = {
"Environment" = "production"
}
}
Create V2System Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new V2System(name: string, args?: V2SystemArgs, opts?: CustomResourceOptions);@overload
def V2System(resource_name: str,
args: Optional[V2SystemArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def V2System(resource_name: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
kms_key_id: Optional[str] = None,
name: Optional[str] = None,
region: Optional[str] = None,
sharing_enabled: Optional[bool] = None,
tags: Optional[Mapping[str, str]] = None)func NewV2System(ctx *Context, name string, args *V2SystemArgs, opts ...ResourceOption) (*V2System, error)public V2System(string name, V2SystemArgs? args = null, CustomResourceOptions? opts = null)
public V2System(String name, V2SystemArgs args)
public V2System(String name, V2SystemArgs args, CustomResourceOptions options)
type: aws:resiliencehub:V2System
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "aws_resiliencehub_v2_system" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args V2SystemArgs
- 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 V2SystemArgs
- 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 V2SystemArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args V2SystemArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args V2SystemArgs
- 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 v2systemResource = new Aws.ResilienceHub.V2System("v2systemResource", new()
{
Description = "string",
KmsKeyId = "string",
Name = "string",
Region = "string",
SharingEnabled = false,
Tags =
{
{ "string", "string" },
},
});
example, err := resiliencehub.NewV2System(ctx, "v2systemResource", &resiliencehub.V2SystemArgs{
Description: pulumi.String("string"),
KmsKeyId: pulumi.String("string"),
Name: pulumi.String("string"),
Region: pulumi.String("string"),
SharingEnabled: pulumi.Bool(false),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
resource "aws_resiliencehub_v2_system" "v2systemResource" {
lifecycle {
create_before_destroy = true
}
description = "string"
kms_key_id = "string"
name = "string"
region = "string"
sharing_enabled = false
tags = {
"string" = "string"
}
}
var v2systemResource = new V2System("v2systemResource", V2SystemArgs.builder()
.description("string")
.kmsKeyId("string")
.name("string")
.region("string")
.sharingEnabled(false)
.tags(Map.of("string", "string"))
.build());
v2system_resource = aws.resiliencehub.V2System("v2systemResource",
description="string",
kms_key_id="string",
name="string",
region="string",
sharing_enabled=False,
tags={
"string": "string",
})
const v2systemResource = new aws.resiliencehub.V2System("v2systemResource", {
description: "string",
kmsKeyId: "string",
name: "string",
region: "string",
sharingEnabled: false,
tags: {
string: "string",
},
});
type: aws:resiliencehub:V2System
properties:
description: string
kmsKeyId: string
name: string
region: string
sharingEnabled: false
tags:
string: string
V2System 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 V2System resource accepts the following input properties:
- Description string
- Description of the system.
- Kms
Key stringId - KMS key ARN.
- Name string
Name of the system. Changing this value requires creating a new resource.
The following arguments are optional:
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- bool
- Whether cross-account sharing is enabled for this system.
- Dictionary<string, string>
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Description string
- Description of the system.
- Kms
Key stringId - KMS key ARN.
- Name string
Name of the system. Changing this value requires creating a new resource.
The following arguments are optional:
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- bool
- Whether cross-account sharing is enabled for this system.
- map[string]string
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- description string
- Description of the system.
- kms_
key_ stringid - KMS key ARN.
- name string
Name of the system. Changing this value requires creating a new resource.
The following arguments are optional:
- region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- bool
- Whether cross-account sharing is enabled for this system.
- map(string)
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- description String
- Description of the system.
- kms
Key StringId - KMS key ARN.
- name String
Name of the system. Changing this value requires creating a new resource.
The following arguments are optional:
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Boolean
- Whether cross-account sharing is enabled for this system.
- Map<String,String>
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- description string
- Description of the system.
- kms
Key stringId - KMS key ARN.
- name string
Name of the system. Changing this value requires creating a new resource.
The following arguments are optional:
- region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- boolean
- Whether cross-account sharing is enabled for this system.
- {[key: string]: string}
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- description str
- Description of the system.
- kms_
key_ strid - KMS key ARN.
- name str
Name of the system. Changing this value requires creating a new resource.
The following arguments are optional:
- region str
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- bool
- Whether cross-account sharing is enabled for this system.
- Mapping[str, str]
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- description String
- Description of the system.
- kms
Key StringId - KMS key ARN.
- name String
Name of the system. Changing this value requires creating a new resource.
The following arguments are optional:
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Boolean
- Whether cross-account sharing is enabled for this system.
- Map<String>
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
Outputs
All input properties are implicitly available as output properties. Additionally, the V2System resource produces the following output properties:
- Arn string
- ARN of the system.
- Id string
- The provider-assigned unique ID for this managed resource.
- Organization
Id string - AWS Organizations identifier for the system.
- Ou
Id string - Organizational unit (OU) identifier for the system.
- System
Id string - System ID for cross-account use without exposing account structure.
- Dictionary<string, string>
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block.
- Arn string
- ARN of the system.
- Id string
- The provider-assigned unique ID for this managed resource.
- Organization
Id string - AWS Organizations identifier for the system.
- Ou
Id string - Organizational unit (OU) identifier for the system.
- System
Id string - System ID for cross-account use without exposing account structure.
- map[string]string
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block.
- arn string
- ARN of the system.
- id string
- The provider-assigned unique ID for this managed resource.
- organization_
id string - AWS Organizations identifier for the system.
- ou_
id string - Organizational unit (OU) identifier for the system.
- system_
id string - System ID for cross-account use without exposing account structure.
- map(string)
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block.
- arn String
- ARN of the system.
- id String
- The provider-assigned unique ID for this managed resource.
- organization
Id String - AWS Organizations identifier for the system.
- ou
Id String - Organizational unit (OU) identifier for the system.
- system
Id String - System ID for cross-account use without exposing account structure.
- Map<String,String>
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block.
- arn string
- ARN of the system.
- id string
- The provider-assigned unique ID for this managed resource.
- organization
Id string - AWS Organizations identifier for the system.
- ou
Id string - Organizational unit (OU) identifier for the system.
- system
Id string - System ID for cross-account use without exposing account structure.
- {[key: string]: string}
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block.
- arn str
- ARN of the system.
- id str
- The provider-assigned unique ID for this managed resource.
- organization_
id str - AWS Organizations identifier for the system.
- ou_
id str - Organizational unit (OU) identifier for the system.
- system_
id str - System ID for cross-account use without exposing account structure.
- Mapping[str, str]
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block.
- arn String
- ARN of the system.
- id String
- The provider-assigned unique ID for this managed resource.
- organization
Id String - AWS Organizations identifier for the system.
- ou
Id String - Organizational unit (OU) identifier for the system.
- system
Id String - System ID for cross-account use without exposing account structure.
- Map<String>
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block.
Look up Existing V2System Resource
Get an existing V2System 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?: V2SystemState, opts?: CustomResourceOptions): V2System@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
arn: Optional[str] = None,
description: Optional[str] = None,
kms_key_id: Optional[str] = None,
name: Optional[str] = None,
organization_id: Optional[str] = None,
ou_id: Optional[str] = None,
region: Optional[str] = None,
sharing_enabled: Optional[bool] = None,
system_id: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None) -> V2Systemfunc GetV2System(ctx *Context, name string, id IDInput, state *V2SystemState, opts ...ResourceOption) (*V2System, error)public static V2System Get(string name, Input<string> id, V2SystemState? state, CustomResourceOptions? opts = null)public static V2System get(String name, Output<String> id, V2SystemState state, CustomResourceOptions options)resources: _: type: aws:resiliencehub:V2System get: id: ${id}import {
to = aws_resiliencehub_v2_system.example
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.
- Arn string
- ARN of the system.
- Description string
- Description of the system.
- Kms
Key stringId - KMS key ARN.
- Name string
Name of the system. Changing this value requires creating a new resource.
The following arguments are optional:
- Organization
Id string - AWS Organizations identifier for the system.
- Ou
Id string - Organizational unit (OU) identifier for the system.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Sharing
Enabled bool - Whether cross-account sharing is enabled for this system.
- System
Id string - System ID for cross-account use without exposing account structure.
- Dictionary<string, string>
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Dictionary<string, string>
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block.
- Arn string
- ARN of the system.
- Description string
- Description of the system.
- Kms
Key stringId - KMS key ARN.
- Name string
Name of the system. Changing this value requires creating a new resource.
The following arguments are optional:
- Organization
Id string - AWS Organizations identifier for the system.
- Ou
Id string - Organizational unit (OU) identifier for the system.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Sharing
Enabled bool - Whether cross-account sharing is enabled for this system.
- System
Id string - System ID for cross-account use without exposing account structure.
- map[string]string
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - map[string]string
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block.
- arn string
- ARN of the system.
- description string
- Description of the system.
- kms_
key_ stringid - KMS key ARN.
- name string
Name of the system. Changing this value requires creating a new resource.
The following arguments are optional:
- organization_
id string - AWS Organizations identifier for the system.
- ou_
id string - Organizational unit (OU) identifier for the system.
- region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- sharing_
enabled bool - Whether cross-account sharing is enabled for this system.
- system_
id string - System ID for cross-account use without exposing account structure.
- map(string)
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - map(string)
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block.
- arn String
- ARN of the system.
- description String
- Description of the system.
- kms
Key StringId - KMS key ARN.
- name String
Name of the system. Changing this value requires creating a new resource.
The following arguments are optional:
- organization
Id String - AWS Organizations identifier for the system.
- ou
Id String - Organizational unit (OU) identifier for the system.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- sharing
Enabled Boolean - Whether cross-account sharing is enabled for this system.
- system
Id String - System ID for cross-account use without exposing account structure.
- Map<String,String>
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String,String>
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block.
- arn string
- ARN of the system.
- description string
- Description of the system.
- kms
Key stringId - KMS key ARN.
- name string
Name of the system. Changing this value requires creating a new resource.
The following arguments are optional:
- organization
Id string - AWS Organizations identifier for the system.
- ou
Id string - Organizational unit (OU) identifier for the system.
- region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- sharing
Enabled boolean - Whether cross-account sharing is enabled for this system.
- system
Id string - System ID for cross-account use without exposing account structure.
- {[key: string]: string}
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - {[key: string]: string}
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block.
- arn str
- ARN of the system.
- description str
- Description of the system.
- kms_
key_ strid - KMS key ARN.
- name str
Name of the system. Changing this value requires creating a new resource.
The following arguments are optional:
- organization_
id str - AWS Organizations identifier for the system.
- ou_
id str - Organizational unit (OU) identifier for the system.
- region str
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- sharing_
enabled bool - Whether cross-account sharing is enabled for this system.
- system_
id str - System ID for cross-account use without exposing account structure.
- Mapping[str, str]
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Mapping[str, str]
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block.
- arn String
- ARN of the system.
- description String
- Description of the system.
- kms
Key StringId - KMS key ARN.
- name String
Name of the system. Changing this value requires creating a new resource.
The following arguments are optional:
- organization
Id String - AWS Organizations identifier for the system.
- ou
Id String - Organizational unit (OU) identifier for the system.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- sharing
Enabled Boolean - Whether cross-account sharing is enabled for this system.
- system
Id String - System ID for cross-account use without exposing account structure.
- Map<String>
- Map of tags to assign to the resource. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String>
- Map of tags assigned to the resource, including those inherited from the provider
defaultTagsconfiguration block.
Import
Identity Schema
Required
arn(String) ARN of the Resilience Hub V2 System.
Using pulumi import, import Resilience Hub V2 System using the arn. For example:
$ pulumi import aws:resiliencehub/v2System:V2System example arn:aws:resiliencehub:us-west-2:123456789012:system/example-system:abc123
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
awsTerraform Provider.
published on Thursday, Sep 10, 2026 by Pulumi