com.pulumi.aws.serverlessrepository.kotlin.CloudFormationStack.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.serverlessrepository.kotlin
import com.pulumi.core.Output
import com.pulumi.kotlin.KotlinCustomResource
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.ResourceMapper
import com.pulumi.kotlin.options.CustomResourceOptions
import com.pulumi.kotlin.options.CustomResourceOptionsBuilder
import com.pulumi.resources.Resource
import kotlin.Boolean
import kotlin.Deprecated
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.collections.Map
/**
* Builder for [CloudFormationStack].
*/
@PulumiTagMarker
public class CloudFormationStackResourceBuilder internal constructor() {
public var name: String? = null
public var args: CloudFormationStackArgs = CloudFormationStackArgs()
public var opts: CustomResourceOptions = CustomResourceOptions()
/**
* @param name The _unique_ name of the resulting resource.
*/
public fun name(`value`: String) {
this.name = value
}
/**
* @param block The arguments to use to populate this resource's properties.
*/
public suspend fun args(block: suspend CloudFormationStackArgsBuilder.() -> Unit) {
val builder = CloudFormationStackArgsBuilder()
block(builder)
this.args = builder.build()
}
/**
* @param block A bag of options that control this resource's behavior.
*/
public suspend fun opts(block: suspend CustomResourceOptionsBuilder.() -> Unit) {
this.opts = com.pulumi.kotlin.options.CustomResourceOptions.opts(block)
}
internal fun build(): CloudFormationStack {
val builtJavaResource =
com.pulumi.aws.serverlessrepository.CloudFormationStack(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return CloudFormationStack(builtJavaResource)
}
}
/**
* Deploys an Application CloudFormation Stack from the Serverless Application Repository.
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as aws from "@pulumi/aws";
* const current = aws.getPartition({});
* const currentGetRegion = aws.getRegion({});
* const postgres_rotator = new aws.serverlessrepository.CloudFormationStack("postgres-rotator", {
* name: "postgres-rotator",
* applicationId: "arn:aws:serverlessrepo:us-east-1:297356227824:applications/SecretsManagerRDSPostgreSQLRotationSingleUser",
* capabilities: [
* "CAPABILITY_IAM",
* "CAPABILITY_RESOURCE_POLICY",
* ],
* parameters: {
* functionName: "func-postgres-rotator",
* endpoint: Promise.all([currentGetRegion, current]).then(([currentGetRegion, current]) => `secretsmanager.${currentGetRegion.name}.${current.dnsSuffix}`),
* },
* });
* ```
* ```python
* import pulumi
* import pulumi_aws as aws
* current = aws.get_partition()
* current_get_region = aws.get_region()
* postgres_rotator = aws.serverlessrepository.CloudFormationStack("postgres-rotator",
* name="postgres-rotator",
* application_id="arn:aws:serverlessrepo:us-east-1:297356227824:applications/SecretsManagerRDSPostgreSQLRotationSingleUser",
* capabilities=[
* "CAPABILITY_IAM",
* "CAPABILITY_RESOURCE_POLICY",
* ],
* parameters={
* "functionName": "func-postgres-rotator",
* "endpoint": f"secretsmanager.{current_get_region.name}.{current.dns_suffix}",
* })
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Aws = Pulumi.Aws;
* return await Deployment.RunAsync(() =>
* {
* var current = Aws.GetPartition.Invoke();
* var currentGetRegion = Aws.GetRegion.Invoke();
* var postgres_rotator = new Aws.ServerlessRepository.CloudFormationStack("postgres-rotator", new()
* {
* Name = "postgres-rotator",
* ApplicationId = "arn:aws:serverlessrepo:us-east-1:297356227824:applications/SecretsManagerRDSPostgreSQLRotationSingleUser",
* Capabilities = new[]
* {
* "CAPABILITY_IAM",
* "CAPABILITY_RESOURCE_POLICY",
* },
* Parameters =
* {
* { "functionName", "func-postgres-rotator" },
* { "endpoint", Output.Tuple(currentGetRegion, current).Apply(values =>
* {
* var currentGetRegion = values.Item1;
* var current = values.Item2;
* return $"secretsmanager.{currentGetRegion.Apply(getRegionResult => getRegionResult.Name)}.{current.Apply(getPartitionResult => getPartitionResult.DnsSuffix)}";
* }) },
* },
* });
* });
* ```
* ```go
* package main
* import (
* "fmt"
* "github.com/pulumi/pulumi-aws/sdk/v6/go/aws"
* "github.com/pulumi/pulumi-aws/sdk/v6/go/aws/serverlessrepository"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* current, err := aws.GetPartition(ctx, &aws.GetPartitionArgs{}, nil)
* if err != nil {
* return err
* }
* currentGetRegion, err := aws.GetRegion(ctx, &aws.GetRegionArgs{}, nil)
* if err != nil {
* return err
* }
* _, err = serverlessrepository.NewCloudFormationStack(ctx, "postgres-rotator", &serverlessrepository.CloudFormationStackArgs{
* Name: pulumi.String("postgres-rotator"),
* ApplicationId: pulumi.String("arn:aws:serverlessrepo:us-east-1:297356227824:applications/SecretsManagerRDSPostgreSQLRotationSingleUser"),
* Capabilities: pulumi.StringArray{
* pulumi.String("CAPABILITY_IAM"),
* pulumi.String("CAPABILITY_RESOURCE_POLICY"),
* },
* Parameters: pulumi.StringMap{
* "functionName": pulumi.String("func-postgres-rotator"),
* "endpoint": pulumi.Sprintf("secretsmanager.%v.%v", currentGetRegion.Name, current.DnsSuffix),
* },
* })
* if err != nil {
* return err
* }
* return nil
* })
* }
* ```
* ```java
* package generated_program;
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.aws.AwsFunctions;
* import com.pulumi.aws.inputs.GetPartitionArgs;
* import com.pulumi.aws.inputs.GetRegionArgs;
* import com.pulumi.aws.serverlessrepository.CloudFormationStack;
* import com.pulumi.aws.serverlessrepository.CloudFormationStackArgs;
* 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) {
* final var current = AwsFunctions.getPartition();
* final var currentGetRegion = AwsFunctions.getRegion();
* var postgres_rotator = new CloudFormationStack("postgres-rotator", CloudFormationStackArgs.builder()
* .name("postgres-rotator")
* .applicationId("arn:aws:serverlessrepo:us-east-1:297356227824:applications/SecretsManagerRDSPostgreSQLRotationSingleUser")
* .capabilities(
* "CAPABILITY_IAM",
* "CAPABILITY_RESOURCE_POLICY")
* .parameters(Map.ofEntries(
* Map.entry("functionName", "func-postgres-rotator"),
* Map.entry("endpoint", String.format("secretsmanager.%s.%s", currentGetRegion.applyValue(getRegionResult -> getRegionResult.name()),current.applyValue(getPartitionResult -> getPartitionResult.dnsSuffix())))
* ))
* .build());
* }
* }
* ```
* ```yaml
* resources:
* postgres-rotator:
* type: aws:serverlessrepository:CloudFormationStack
* properties:
* name: postgres-rotator
* applicationId: arn:aws:serverlessrepo:us-east-1:297356227824:applications/SecretsManagerRDSPostgreSQLRotationSingleUser
* capabilities:
* - CAPABILITY_IAM
* - CAPABILITY_RESOURCE_POLICY
* parameters:
* functionName: func-postgres-rotator
* endpoint: secretsmanager.${currentGetRegion.name}.${current.dnsSuffix}
* variables:
* current:
* fn::invoke:
* Function: aws:getPartition
* Arguments: {}
* currentGetRegion:
* fn::invoke:
* Function: aws:getRegion
* Arguments: {}
* ```
*
* ## Import
* Using `pulumi import`, import Serverless Application Repository Stack using the CloudFormation Stack name (with or without the `serverlessrepo-` prefix) or the CloudFormation Stack ID. For example:
* ```sh
* $ pulumi import aws:serverlessrepository/cloudFormationStack:CloudFormationStack example serverlessrepo-postgres-rotator
* ```
*/
public class CloudFormationStack internal constructor(
override val javaResource: com.pulumi.aws.serverlessrepository.CloudFormationStack,
) : KotlinCustomResource(javaResource, CloudFormationStackMapper) {
/**
* The ARN of the application from the Serverless Application Repository.
*/
public val applicationId: Output
get() = javaResource.applicationId().applyValue({ args0 -> args0 })
/**
* A list of capabilities. Valid values are `CAPABILITY_IAM`, `CAPABILITY_NAMED_IAM`, `CAPABILITY_RESOURCE_POLICY`, or `CAPABILITY_AUTO_EXPAND`
*/
public val capabilities: Output>
get() = javaResource.capabilities().applyValue({ args0 -> args0.map({ args0 -> args0 }) })
/**
* The name of the stack to create. The resource deployed in AWS will be prefixed with `serverlessrepo-`
*/
public val name: Output
get() = javaResource.name().applyValue({ args0 -> args0 })
/**
* A map of outputs from the stack.
*/
public val outputs: Output
© 2015 - 2024 Weber Informatics LLC | Privacy Policy