aws.ssm.QuicksetupConfigurationManager
Explore with Pulumi AI
Resource for managing an AWS SSM Quick Setup Configuration Manager.
Example Usage
Patch Policy Configuration Type
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const current = aws.getCallerIdentity({});
const currentGetPartition = aws.getPartition({});
const currentGetRegion = aws.getRegion({});
const example = aws.ssm.getPatchBaselines({
defaultBaselines: true,
});
// transform the output of the aws_ssm_patch_baselines data source
// into the format expected by the SelectedPatchBaselines parameter
const selectedPatchBaselines = JSON.stringify(example.then(example => .reduce((__obj, baseline) => ({ ...__obj, [baseline.operatingSystem]: {
value: baseline.baselineId,
label: baseline.baselineName,
description: baseline.baselineDescription,
disabled: !baseline.defaultBaseline,
} }))));
const exampleQuicksetupConfigurationManager = new aws.ssm.QuicksetupConfigurationManager("example", {
name: "example",
configurationDefinition: {
localDeploymentAdministrationRoleArn: Promise.all([currentGetPartition, current]).then(([currentGetPartition, current]) => `arn:${currentGetPartition.partition}:iam::${current.accountId}:role/AWS-QuickSetup-PatchPolicy-LocalAdministrationRole`),
localDeploymentExecutionRoleName: "AWS-QuickSetup-PatchPolicy-LocalExecutionRole",
type: "AWSQuickSetupType-PatchPolicy",
parameters: {
ConfigurationOptionsPatchOperation: "Scan",
ConfigurationOptionsScanValue: "cron(0 1 * * ? *)",
ConfigurationOptionsScanNextInterval: "false",
PatchBaselineRegion: currentGetRegion.then(currentGetRegion => currentGetRegion.name),
PatchBaselineUseDefault: "default",
PatchPolicyName: "example",
SelectedPatchBaselines: selectedPatchBaselines,
OutputLogEnableS3: "false",
RateControlConcurrency: "10%",
RateControlErrorThreshold: "2%",
IsPolicyAttachAllowed: "false",
TargetAccounts: current.then(current => current.accountId),
TargetRegions: currentGetRegion.then(currentGetRegion => currentGetRegion.name),
TargetType: "*",
},
},
});
import pulumi
import json
import pulumi_aws as aws
current = aws.get_caller_identity()
current_get_partition = aws.get_partition()
current_get_region = aws.get_region()
example = aws.ssm.get_patch_baselines(default_baselines=True)
# transform the output of the aws_ssm_patch_baselines data source
# into the format expected by the SelectedPatchBaselines parameter
selected_patch_baselines = json.dumps({baseline.operating_system: {
"value": baseline.baseline_id,
"label": baseline.baseline_name,
"description": baseline.baseline_description,
"disabled": not baseline.default_baseline,
} for baseline in example.baseline_identities})
example_quicksetup_configuration_manager = aws.ssm.QuicksetupConfigurationManager("example",
name="example",
configuration_definition={
"local_deployment_administration_role_arn": f"arn:{current_get_partition.partition}:iam::{current.account_id}:role/AWS-QuickSetup-PatchPolicy-LocalAdministrationRole",
"local_deployment_execution_role_name": "AWS-QuickSetup-PatchPolicy-LocalExecutionRole",
"type": "AWSQuickSetupType-PatchPolicy",
"parameters": {
"ConfigurationOptionsPatchOperation": "Scan",
"ConfigurationOptionsScanValue": "cron(0 1 * * ? *)",
"ConfigurationOptionsScanNextInterval": "false",
"PatchBaselineRegion": current_get_region.name,
"PatchBaselineUseDefault": "default",
"PatchPolicyName": "example",
"SelectedPatchBaselines": selected_patch_baselines,
"OutputLogEnableS3": "false",
"RateControlConcurrency": "10%",
"RateControlErrorThreshold": "2%",
"IsPolicyAttachAllowed": "false",
"TargetAccounts": current.account_id,
"TargetRegions": current_get_region.name,
"TargetType": "*",
},
})
Coming soon!
using System.Collections.Generic;
using System.Linq;
using System.Text.Json;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var current = Aws.GetCallerIdentity.Invoke();
var currentGetPartition = Aws.GetPartition.Invoke();
var currentGetRegion = Aws.GetRegion.Invoke();
var example = Aws.Ssm.GetPatchBaselines.Invoke(new()
{
DefaultBaselines = true,
});
// transform the output of the aws_ssm_patch_baselines data source
// into the format expected by the SelectedPatchBaselines parameter
var selectedPatchBaselines = JsonSerializer.Serialize(.ToDictionary(item => {
var baseline = item.Value;
return baseline.OperatingSystem;
}, item => {
var baseline = item.Value;
return
{
{ "value", baseline.BaselineId },
{ "label", baseline.BaselineName },
{ "description", baseline.BaselineDescription },
{ "disabled", !baseline.DefaultBaseline },
};
}));
var exampleQuicksetupConfigurationManager = new Aws.Ssm.QuicksetupConfigurationManager("example", new()
{
Name = "example",
ConfigurationDefinition = new Aws.Ssm.Inputs.QuicksetupConfigurationManagerConfigurationDefinitionArgs
{
LocalDeploymentAdministrationRoleArn = Output.Tuple(currentGetPartition, current).Apply(values =>
{
var currentGetPartition = values.Item1;
var current = values.Item2;
return $"arn:{currentGetPartition.Apply(getPartitionResult => getPartitionResult.Partition)}:iam::{current.Apply(getCallerIdentityResult => getCallerIdentityResult.AccountId)}:role/AWS-QuickSetup-PatchPolicy-LocalAdministrationRole";
}),
LocalDeploymentExecutionRoleName = "AWS-QuickSetup-PatchPolicy-LocalExecutionRole",
Type = "AWSQuickSetupType-PatchPolicy",
Parameters =
{
{ "ConfigurationOptionsPatchOperation", "Scan" },
{ "ConfigurationOptionsScanValue", "cron(0 1 * * ? *)" },
{ "ConfigurationOptionsScanNextInterval", "false" },
{ "PatchBaselineRegion", currentGetRegion.Apply(getRegionResult => getRegionResult.Name) },
{ "PatchBaselineUseDefault", "default" },
{ "PatchPolicyName", "example" },
{ "SelectedPatchBaselines", selectedPatchBaselines },
{ "OutputLogEnableS3", "false" },
{ "RateControlConcurrency", "10%" },
{ "RateControlErrorThreshold", "2%" },
{ "IsPolicyAttachAllowed", "false" },
{ "TargetAccounts", current.Apply(getCallerIdentityResult => getCallerIdentityResult.AccountId) },
{ "TargetRegions", currentGetRegion.Apply(getRegionResult => getRegionResult.Name) },
{ "TargetType", "*" },
},
},
});
});
Coming soon!
Coming soon!
Create QuicksetupConfigurationManager Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new QuicksetupConfigurationManager(name: string, args?: QuicksetupConfigurationManagerArgs, opts?: CustomResourceOptions);
@overload
def QuicksetupConfigurationManager(resource_name: str,
args: Optional[QuicksetupConfigurationManagerArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def QuicksetupConfigurationManager(resource_name: str,
opts: Optional[ResourceOptions] = None,
configuration_definition: Optional[QuicksetupConfigurationManagerConfigurationDefinitionArgs] = None,
description: Optional[str] = None,
name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
timeouts: Optional[QuicksetupConfigurationManagerTimeoutsArgs] = None)
func NewQuicksetupConfigurationManager(ctx *Context, name string, args *QuicksetupConfigurationManagerArgs, opts ...ResourceOption) (*QuicksetupConfigurationManager, error)
public QuicksetupConfigurationManager(string name, QuicksetupConfigurationManagerArgs? args = null, CustomResourceOptions? opts = null)
public QuicksetupConfigurationManager(String name, QuicksetupConfigurationManagerArgs args)
public QuicksetupConfigurationManager(String name, QuicksetupConfigurationManagerArgs args, CustomResourceOptions options)
type: aws:ssm:QuicksetupConfigurationManager
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 QuicksetupConfigurationManagerArgs
- 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 QuicksetupConfigurationManagerArgs
- 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 QuicksetupConfigurationManagerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args QuicksetupConfigurationManagerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args QuicksetupConfigurationManagerArgs
- 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 quicksetupConfigurationManagerResource = new Aws.Ssm.QuicksetupConfigurationManager("quicksetupConfigurationManagerResource", new()
{
ConfigurationDefinition = new Aws.Ssm.Inputs.QuicksetupConfigurationManagerConfigurationDefinitionArgs
{
Parameters =
{
{ "string", "string" },
},
Type = "string",
Id = "string",
LocalDeploymentAdministrationRoleArn = "string",
LocalDeploymentExecutionRoleName = "string",
TypeVersion = "string",
},
Description = "string",
Name = "string",
Tags =
{
{ "string", "string" },
},
Timeouts = new Aws.Ssm.Inputs.QuicksetupConfigurationManagerTimeoutsArgs
{
Create = "string",
Delete = "string",
Update = "string",
},
});
example, err := ssm.NewQuicksetupConfigurationManager(ctx, "quicksetupConfigurationManagerResource", &ssm.QuicksetupConfigurationManagerArgs{
ConfigurationDefinition: &ssm.QuicksetupConfigurationManagerConfigurationDefinitionArgs{
Parameters: pulumi.StringMap{
"string": pulumi.String("string"),
},
Type: pulumi.String("string"),
Id: pulumi.String("string"),
LocalDeploymentAdministrationRoleArn: pulumi.String("string"),
LocalDeploymentExecutionRoleName: pulumi.String("string"),
TypeVersion: pulumi.String("string"),
},
Description: pulumi.String("string"),
Name: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Timeouts: &ssm.QuicksetupConfigurationManagerTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Update: pulumi.String("string"),
},
})
var quicksetupConfigurationManagerResource = new QuicksetupConfigurationManager("quicksetupConfigurationManagerResource", QuicksetupConfigurationManagerArgs.builder()
.configurationDefinition(QuicksetupConfigurationManagerConfigurationDefinitionArgs.builder()
.parameters(Map.of("string", "string"))
.type("string")
.id("string")
.localDeploymentAdministrationRoleArn("string")
.localDeploymentExecutionRoleName("string")
.typeVersion("string")
.build())
.description("string")
.name("string")
.tags(Map.of("string", "string"))
.timeouts(QuicksetupConfigurationManagerTimeoutsArgs.builder()
.create("string")
.delete("string")
.update("string")
.build())
.build());
quicksetup_configuration_manager_resource = aws.ssm.QuicksetupConfigurationManager("quicksetupConfigurationManagerResource",
configuration_definition={
"parameters": {
"string": "string",
},
"type": "string",
"id": "string",
"local_deployment_administration_role_arn": "string",
"local_deployment_execution_role_name": "string",
"type_version": "string",
},
description="string",
name="string",
tags={
"string": "string",
},
timeouts={
"create": "string",
"delete": "string",
"update": "string",
})
const quicksetupConfigurationManagerResource = new aws.ssm.QuicksetupConfigurationManager("quicksetupConfigurationManagerResource", {
configurationDefinition: {
parameters: {
string: "string",
},
type: "string",
id: "string",
localDeploymentAdministrationRoleArn: "string",
localDeploymentExecutionRoleName: "string",
typeVersion: "string",
},
description: "string",
name: "string",
tags: {
string: "string",
},
timeouts: {
create: "string",
"delete": "string",
update: "string",
},
});
type: aws:ssm:QuicksetupConfigurationManager
properties:
configurationDefinition:
id: string
localDeploymentAdministrationRoleArn: string
localDeploymentExecutionRoleName: string
parameters:
string: string
type: string
typeVersion: string
description: string
name: string
tags:
string: string
timeouts:
create: string
delete: string
update: string
QuicksetupConfigurationManager 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 QuicksetupConfigurationManager resource accepts the following input properties:
- Configuration
Definition QuicksetupConfiguration Manager Configuration Definition - Definition of the Quick Setup configuration that the configuration manager deploys. See
configuration_definition
below. - Description string
- Description of the configuration manager.
- Name string
Configuration manager name.
The following arguments are optional:
- Dictionary<string, string>
- Map of tags assigned to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Timeouts
Quicksetup
Configuration Manager Timeouts
- Configuration
Definition QuicksetupConfiguration Manager Configuration Definition Args - Definition of the Quick Setup configuration that the configuration manager deploys. See
configuration_definition
below. - Description string
- Description of the configuration manager.
- Name string
Configuration manager name.
The following arguments are optional:
- map[string]string
- Map of tags assigned to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Timeouts
Quicksetup
Configuration Manager Timeouts Args
- configuration
Definition QuicksetupConfiguration Manager Configuration Definition - Definition of the Quick Setup configuration that the configuration manager deploys. See
configuration_definition
below. - description String
- Description of the configuration manager.
- name String
Configuration manager name.
The following arguments are optional:
- Map<String,String>
- Map of tags assigned to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Quicksetup
Configuration Manager Timeouts
- configuration
Definition QuicksetupConfiguration Manager Configuration Definition - Definition of the Quick Setup configuration that the configuration manager deploys. See
configuration_definition
below. - description string
- Description of the configuration manager.
- name string
Configuration manager name.
The following arguments are optional:
- {[key: string]: string}
- Map of tags assigned to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Quicksetup
Configuration Manager Timeouts
- configuration_
definition QuicksetupConfiguration Manager Configuration Definition Args - Definition of the Quick Setup configuration that the configuration manager deploys. See
configuration_definition
below. - description str
- Description of the configuration manager.
- name str
Configuration manager name.
The following arguments are optional:
- Mapping[str, str]
- Map of tags assigned to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Quicksetup
Configuration Manager Timeouts Args
- configuration
Definition Property Map - Definition of the Quick Setup configuration that the configuration manager deploys. See
configuration_definition
below. - description String
- Description of the configuration manager.
- name String
Configuration manager name.
The following arguments are optional:
- Map<String>
- Map of tags assigned to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the QuicksetupConfigurationManager resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Manager
Arn string - ARN of the Configuration Manager.
- Status
Summaries List<QuicksetupConfiguration Manager Status Summary> - A summary of the state of the configuration manager. This includes deployment statuses, association statuses, drift statuses, health checks, and more. See
status_summaries
below. - Dictionary<string, string>
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- Id string
- The provider-assigned unique ID for this managed resource.
- Manager
Arn string - ARN of the Configuration Manager.
- Status
Summaries []QuicksetupConfiguration Manager Status Summary - A summary of the state of the configuration manager. This includes deployment statuses, association statuses, drift statuses, health checks, and more. See
status_summaries
below. - map[string]string
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- id String
- The provider-assigned unique ID for this managed resource.
- manager
Arn String - ARN of the Configuration Manager.
- status
Summaries List<QuicksetupConfiguration Manager Status Summary> - A summary of the state of the configuration manager. This includes deployment statuses, association statuses, drift statuses, health checks, and more. See
status_summaries
below. - Map<String,String>
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- id string
- The provider-assigned unique ID for this managed resource.
- manager
Arn string - ARN of the Configuration Manager.
- status
Summaries QuicksetupConfiguration Manager Status Summary[] - A summary of the state of the configuration manager. This includes deployment statuses, association statuses, drift statuses, health checks, and more. See
status_summaries
below. - {[key: string]: string}
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- id str
- The provider-assigned unique ID for this managed resource.
- manager_
arn str - ARN of the Configuration Manager.
- status_
summaries Sequence[QuicksetupConfiguration Manager Status Summary] - A summary of the state of the configuration manager. This includes deployment statuses, association statuses, drift statuses, health checks, and more. See
status_summaries
below. - Mapping[str, str]
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- id String
- The provider-assigned unique ID for this managed resource.
- manager
Arn String - ARN of the Configuration Manager.
- status
Summaries List<Property Map> - A summary of the state of the configuration manager. This includes deployment statuses, association statuses, drift statuses, health checks, and more. See
status_summaries
below. - Map<String>
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
Look up Existing QuicksetupConfigurationManager Resource
Get an existing QuicksetupConfigurationManager 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?: QuicksetupConfigurationManagerState, opts?: CustomResourceOptions): QuicksetupConfigurationManager
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
configuration_definition: Optional[QuicksetupConfigurationManagerConfigurationDefinitionArgs] = None,
description: Optional[str] = None,
manager_arn: Optional[str] = None,
name: Optional[str] = None,
status_summaries: Optional[Sequence[QuicksetupConfigurationManagerStatusSummaryArgs]] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None,
timeouts: Optional[QuicksetupConfigurationManagerTimeoutsArgs] = None) -> QuicksetupConfigurationManager
func GetQuicksetupConfigurationManager(ctx *Context, name string, id IDInput, state *QuicksetupConfigurationManagerState, opts ...ResourceOption) (*QuicksetupConfigurationManager, error)
public static QuicksetupConfigurationManager Get(string name, Input<string> id, QuicksetupConfigurationManagerState? state, CustomResourceOptions? opts = null)
public static QuicksetupConfigurationManager get(String name, Output<String> id, QuicksetupConfigurationManagerState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Configuration
Definition QuicksetupConfiguration Manager Configuration Definition - Definition of the Quick Setup configuration that the configuration manager deploys. See
configuration_definition
below. - Description string
- Description of the configuration manager.
- Manager
Arn string - ARN of the Configuration Manager.
- Name string
Configuration manager name.
The following arguments are optional:
- Status
Summaries List<QuicksetupConfiguration Manager Status Summary> - A summary of the state of the configuration manager. This includes deployment statuses, association statuses, drift statuses, health checks, and more. See
status_summaries
below. - Dictionary<string, string>
- Map of tags assigned to the resource. If configured with a provider
default_tags
configuration 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
default_tags
configuration block. - Timeouts
Quicksetup
Configuration Manager Timeouts
- Configuration
Definition QuicksetupConfiguration Manager Configuration Definition Args - Definition of the Quick Setup configuration that the configuration manager deploys. See
configuration_definition
below. - Description string
- Description of the configuration manager.
- Manager
Arn string - ARN of the Configuration Manager.
- Name string
Configuration manager name.
The following arguments are optional:
- Status
Summaries []QuicksetupConfiguration Manager Status Summary Args - A summary of the state of the configuration manager. This includes deployment statuses, association statuses, drift statuses, health checks, and more. See
status_summaries
below. - map[string]string
- Map of tags assigned to the resource. If configured with a provider
default_tags
configuration 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
default_tags
configuration block. - Timeouts
Quicksetup
Configuration Manager Timeouts Args
- configuration
Definition QuicksetupConfiguration Manager Configuration Definition - Definition of the Quick Setup configuration that the configuration manager deploys. See
configuration_definition
below. - description String
- Description of the configuration manager.
- manager
Arn String - ARN of the Configuration Manager.
- name String
Configuration manager name.
The following arguments are optional:
- status
Summaries List<QuicksetupConfiguration Manager Status Summary> - A summary of the state of the configuration manager. This includes deployment statuses, association statuses, drift statuses, health checks, and more. See
status_summaries
below. - Map<String,String>
- Map of tags assigned to the resource. If configured with a provider
default_tags
configuration 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
default_tags
configuration block. - timeouts
Quicksetup
Configuration Manager Timeouts
- configuration
Definition QuicksetupConfiguration Manager Configuration Definition - Definition of the Quick Setup configuration that the configuration manager deploys. See
configuration_definition
below. - description string
- Description of the configuration manager.
- manager
Arn string - ARN of the Configuration Manager.
- name string
Configuration manager name.
The following arguments are optional:
- status
Summaries QuicksetupConfiguration Manager Status Summary[] - A summary of the state of the configuration manager. This includes deployment statuses, association statuses, drift statuses, health checks, and more. See
status_summaries
below. - {[key: string]: string}
- Map of tags assigned to the resource. If configured with a provider
default_tags
configuration 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
default_tags
configuration block. - timeouts
Quicksetup
Configuration Manager Timeouts
- configuration_
definition QuicksetupConfiguration Manager Configuration Definition Args - Definition of the Quick Setup configuration that the configuration manager deploys. See
configuration_definition
below. - description str
- Description of the configuration manager.
- manager_
arn str - ARN of the Configuration Manager.
- name str
Configuration manager name.
The following arguments are optional:
- status_
summaries Sequence[QuicksetupConfiguration Manager Status Summary Args] - A summary of the state of the configuration manager. This includes deployment statuses, association statuses, drift statuses, health checks, and more. See
status_summaries
below. - Mapping[str, str]
- Map of tags assigned to the resource. If configured with a provider
default_tags
configuration 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
default_tags
configuration block. - timeouts
Quicksetup
Configuration Manager Timeouts Args
- configuration
Definition Property Map - Definition of the Quick Setup configuration that the configuration manager deploys. See
configuration_definition
below. - description String
- Description of the configuration manager.
- manager
Arn String - ARN of the Configuration Manager.
- name String
Configuration manager name.
The following arguments are optional:
- status
Summaries List<Property Map> - A summary of the state of the configuration manager. This includes deployment statuses, association statuses, drift statuses, health checks, and more. See
status_summaries
below. - Map<String>
- Map of tags assigned to the resource. If configured with a provider
default_tags
configuration 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
default_tags
configuration block. - timeouts Property Map
Supporting Types
QuicksetupConfigurationManagerConfigurationDefinition, QuicksetupConfigurationManagerConfigurationDefinitionArgs
- Parameters Dictionary<string, string>
- Parameters for the configuration definition type. Parameters for configuration definitions vary based the configuration type. See the AWS API documentation for a complete list of parameters for each configuration type.
- Type string
- Type of the Quick Setup configuration.
- Id string
- Local
Deployment stringAdministration Role Arn - Local
Deployment stringExecution Role Name - Name of the IAM role used to deploy local configurations.
- Type
Version string - Version of the Quick Setup type to use.
- Parameters map[string]string
- Parameters for the configuration definition type. Parameters for configuration definitions vary based the configuration type. See the AWS API documentation for a complete list of parameters for each configuration type.
- Type string
- Type of the Quick Setup configuration.
- Id string
- Local
Deployment stringAdministration Role Arn - Local
Deployment stringExecution Role Name - Name of the IAM role used to deploy local configurations.
- Type
Version string - Version of the Quick Setup type to use.
- parameters Map<String,String>
- Parameters for the configuration definition type. Parameters for configuration definitions vary based the configuration type. See the AWS API documentation for a complete list of parameters for each configuration type.
- type String
- Type of the Quick Setup configuration.
- id String
- local
Deployment StringAdministration Role Arn - local
Deployment StringExecution Role Name - Name of the IAM role used to deploy local configurations.
- type
Version String - Version of the Quick Setup type to use.
- parameters {[key: string]: string}
- Parameters for the configuration definition type. Parameters for configuration definitions vary based the configuration type. See the AWS API documentation for a complete list of parameters for each configuration type.
- type string
- Type of the Quick Setup configuration.
- id string
- local
Deployment stringAdministration Role Arn - local
Deployment stringExecution Role Name - Name of the IAM role used to deploy local configurations.
- type
Version string - Version of the Quick Setup type to use.
- parameters Mapping[str, str]
- Parameters for the configuration definition type. Parameters for configuration definitions vary based the configuration type. See the AWS API documentation for a complete list of parameters for each configuration type.
- type str
- Type of the Quick Setup configuration.
- id str
- local_
deployment_ stradministration_ role_ arn - local_
deployment_ strexecution_ role_ name - Name of the IAM role used to deploy local configurations.
- type_
version str - Version of the Quick Setup type to use.
- parameters Map<String>
- Parameters for the configuration definition type. Parameters for configuration definitions vary based the configuration type. See the AWS API documentation for a complete list of parameters for each configuration type.
- type String
- Type of the Quick Setup configuration.
- id String
- local
Deployment StringAdministration Role Arn - local
Deployment StringExecution Role Name - Name of the IAM role used to deploy local configurations.
- type
Version String - Version of the Quick Setup type to use.
QuicksetupConfigurationManagerStatusSummary, QuicksetupConfigurationManagerStatusSummaryArgs
- Status string
- Current status.
- Status
Message string - When applicable, returns an informational message relevant to the current status and status type of the status summary object.
- Status
Type string - Type of a status summary.
- Status string
- Current status.
- Status
Message string - When applicable, returns an informational message relevant to the current status and status type of the status summary object.
- Status
Type string - Type of a status summary.
- status String
- Current status.
- status
Message String - When applicable, returns an informational message relevant to the current status and status type of the status summary object.
- status
Type String - Type of a status summary.
- status string
- Current status.
- status
Message string - When applicable, returns an informational message relevant to the current status and status type of the status summary object.
- status
Type string - Type of a status summary.
- status str
- Current status.
- status_
message str - When applicable, returns an informational message relevant to the current status and status type of the status summary object.
- status_
type str - Type of a status summary.
- status String
- Current status.
- status
Message String - When applicable, returns an informational message relevant to the current status and status type of the status summary object.
- status
Type String - Type of a status summary.
QuicksetupConfigurationManagerTimeouts, QuicksetupConfigurationManagerTimeoutsArgs
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- Update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- Update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- update String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- update str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- update String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
Import
Using pulumi import
, import SSM Quick Setup Configuration Manager using the manager_arn
. For example:
$ pulumi import aws:ssm/quicksetupConfigurationManager:QuicksetupConfigurationManager example arn:aws:ssm-quicksetup:us-east-1:012345678901:configuration-manager/abcd-1234
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
aws
Terraform Provider.