1. Packages
  2. Doppler
  3. API Docs
  4. secretsSync
  5. AwsSecretsManager
Doppler v0.9.0 published on Tuesday, Aug 27, 2024 by Pulumiverse

doppler.secretsSync.AwsSecretsManager

Explore with Pulumi AI

Manage an AWS Secrets Manager Doppler sync.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
import * as doppler from "@pulumiverse/doppler";

const dopplerSecretsManager = new aws.iam.Role("doppler_secrets_manager", {
    name: "doppler_secrets_manager",
    assumeRolePolicy: JSON.stringify({
        Version: "2012-10-17",
        Statement: [{
            Effect: "Allow",
            Action: "sts:AssumeRole",
            Principal: {
                AWS: "arn:aws:iam::299900769157:user/doppler-integration-operator",
            },
            Condition: {
                StringEquals: {
                    "sts:ExternalId": "<YOUR_WORKPLACE_SLUG>",
                },
            },
        }],
    }),
    inlinePolicies: [{
        name: "doppler_secret_manager",
        policy: JSON.stringify({
            Version: "2012-10-17",
            Statement: [{
                Action: [
                    "secretsmanager:GetSecretValue",
                    "secretsmanager:DescribeSecret",
                    "secretsmanager:PutSecretValue",
                    "secretsmanager:CreateSecret",
                    "secretsmanager:DeleteSecret",
                    "secretsmanager:TagResource",
                    "secretsmanager:UpdateSecret",
                ],
                Effect: "Allow",
                Resource: "*",
            }],
        }),
    }],
});
const prod = new doppler.integration.AwsSecretsManager("prod", {
    name: "Production",
    assumeRoleArn: dopplerSecretsManager.arn,
});
const backendProd = new doppler.secretssync.AwsSecretsManager("backend_prod", {
    integration: prod.id,
    project: "backend",
    config: "prd",
    region: "us-east-1",
    path: "/backend/",
    tags: {
        myTag: "enabled",
    },
    deleteBehavior: "leave_in_target",
});
Copy
import pulumi
import json
import pulumi_aws as aws
import pulumiverse_doppler as doppler

doppler_secrets_manager = aws.iam.Role("doppler_secrets_manager",
    name="doppler_secrets_manager",
    assume_role_policy=json.dumps({
        "Version": "2012-10-17",
        "Statement": [{
            "Effect": "Allow",
            "Action": "sts:AssumeRole",
            "Principal": {
                "AWS": "arn:aws:iam::299900769157:user/doppler-integration-operator",
            },
            "Condition": {
                "StringEquals": {
                    "sts:ExternalId": "<YOUR_WORKPLACE_SLUG>",
                },
            },
        }],
    }),
    inline_policies=[{
        "name": "doppler_secret_manager",
        "policy": json.dumps({
            "version": "2012-10-17",
            "statement": [{
                "action": [
                    "secretsmanager:GetSecretValue",
                    "secretsmanager:DescribeSecret",
                    "secretsmanager:PutSecretValue",
                    "secretsmanager:CreateSecret",
                    "secretsmanager:DeleteSecret",
                    "secretsmanager:TagResource",
                    "secretsmanager:UpdateSecret",
                ],
                "effect": "Allow",
                "resource": "*",
            }],
        }),
    }])
prod = doppler.integration.AwsSecretsManager("prod",
    name="Production",
    assume_role_arn=doppler_secrets_manager.arn)
backend_prod = doppler.secrets_sync.AwsSecretsManager("backend_prod",
    integration=prod.id,
    project="backend",
    config="prd",
    region="us-east-1",
    path="/backend/",
    tags={
        "myTag": "enabled",
    },
    delete_behavior="leave_in_target")
Copy
package main

import (
	"encoding/json"

	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/iam"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/pulumiverse/pulumi-doppler/sdk/go/doppler/integration"
	"github.com/pulumiverse/pulumi-doppler/sdk/go/doppler/secretsSync"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		tmpJSON0, err := json.Marshal(map[string]interface{}{
			"Version": "2012-10-17",
			"Statement": []map[string]interface{}{
				map[string]interface{}{
					"Effect": "Allow",
					"Action": "sts:AssumeRole",
					"Principal": map[string]interface{}{
						"AWS": "arn:aws:iam::299900769157:user/doppler-integration-operator",
					},
					"Condition": map[string]interface{}{
						"StringEquals": map[string]interface{}{
							"sts:ExternalId": "<YOUR_WORKPLACE_SLUG>",
						},
					},
				},
			},
		})
		if err != nil {
			return err
		}
		json0 := string(tmpJSON0)
		tmpJSON1, err := json.Marshal(map[string]interface{}{
			"Version": "2012-10-17",
			"Statement": []map[string]interface{}{
				map[string]interface{}{
					"Action": []string{
						"secretsmanager:GetSecretValue",
						"secretsmanager:DescribeSecret",
						"secretsmanager:PutSecretValue",
						"secretsmanager:CreateSecret",
						"secretsmanager:DeleteSecret",
						"secretsmanager:TagResource",
						"secretsmanager:UpdateSecret",
					},
					"Effect":   "Allow",
					"Resource": "*",
				},
			},
		})
		if err != nil {
			return err
		}
		json1 := string(tmpJSON1)
		dopplerSecretsManager, err := iam.NewRole(ctx, "doppler_secrets_manager", &iam.RoleArgs{
			Name:             pulumi.String("doppler_secrets_manager"),
			AssumeRolePolicy: pulumi.String(json0),
			InlinePolicies: iam.RoleInlinePolicyArray{
				&iam.RoleInlinePolicyArgs{
					Name:   pulumi.String("doppler_secret_manager"),
					Policy: pulumi.String(json1),
				},
			},
		})
		if err != nil {
			return err
		}
		prod, err := integration.NewAwsSecretsManager(ctx, "prod", &integration.AwsSecretsManagerArgs{
			Name:          pulumi.String("Production"),
			AssumeRoleArn: dopplerSecretsManager.Arn,
		})
		if err != nil {
			return err
		}
		_, err = secretsSync.NewAwsSecretsManager(ctx, "backend_prod", &secretsSync.AwsSecretsManagerArgs{
			Integration: prod.ID(),
			Project:     pulumi.String("backend"),
			Config:      pulumi.String("prd"),
			Region:      pulumi.String("us-east-1"),
			Path:        pulumi.String("/backend/"),
			Tags: pulumi.StringMap{
				"myTag": pulumi.String("enabled"),
			},
			DeleteBehavior: pulumi.String("leave_in_target"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using System.Text.Json;
using Pulumi;
using Aws = Pulumi.Aws;
using Doppler = Pulumiverse.Doppler;

return await Deployment.RunAsync(() => 
{
    var dopplerSecretsManager = new Aws.Iam.Role("doppler_secrets_manager", new()
    {
        Name = "doppler_secrets_manager",
        AssumeRolePolicy = JsonSerializer.Serialize(new Dictionary<string, object?>
        {
            ["Version"] = "2012-10-17",
            ["Statement"] = new[]
            {
                new Dictionary<string, object?>
                {
                    ["Effect"] = "Allow",
                    ["Action"] = "sts:AssumeRole",
                    ["Principal"] = new Dictionary<string, object?>
                    {
                        ["AWS"] = "arn:aws:iam::299900769157:user/doppler-integration-operator",
                    },
                    ["Condition"] = new Dictionary<string, object?>
                    {
                        ["StringEquals"] = new Dictionary<string, object?>
                        {
                            ["sts:ExternalId"] = "<YOUR_WORKPLACE_SLUG>",
                        },
                    },
                },
            },
        }),
        InlinePolicies = new[]
        {
            new Aws.Iam.Inputs.RoleInlinePolicyArgs
            {
                Name = "doppler_secret_manager",
                Policy = JsonSerializer.Serialize(new Dictionary<string, object?>
                {
                    ["Version"] = "2012-10-17",
                    ["Statement"] = new[]
                    {
                        new Dictionary<string, object?>
                        {
                            ["Action"] = new[]
                            {
                                "secretsmanager:GetSecretValue",
                                "secretsmanager:DescribeSecret",
                                "secretsmanager:PutSecretValue",
                                "secretsmanager:CreateSecret",
                                "secretsmanager:DeleteSecret",
                                "secretsmanager:TagResource",
                                "secretsmanager:UpdateSecret",
                            },
                            ["Effect"] = "Allow",
                            ["Resource"] = "*",
                        },
                    },
                }),
            },
        },
    });

    var prod = new Doppler.Integration.AwsSecretsManager("prod", new()
    {
        Name = "Production",
        AssumeRoleArn = dopplerSecretsManager.Arn,
    });

    var backendProd = new Doppler.SecretsSync.AwsSecretsManager("backend_prod", new()
    {
        Integration = prod.Id,
        Project = "backend",
        Config = "prd",
        Region = "us-east-1",
        Path = "/backend/",
        Tags = 
        {
            { "myTag", "enabled" },
        },
        DeleteBehavior = "leave_in_target",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.iam.Role;
import com.pulumi.aws.iam.RoleArgs;
import com.pulumi.aws.iam.inputs.RoleInlinePolicyArgs;
import com.pulumi.doppler.integration.AwsSecretsManager;
import com.pulumi.doppler.integration.AwsSecretsManagerArgs;
import com.pulumi.doppler.secretsSync.AwsSecretsManager;
import com.pulumi.doppler.secretsSync.AwsSecretsManagerArgs;
import static com.pulumi.codegen.internal.Serialization.*;
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 dopplerSecretsManager = new Role("dopplerSecretsManager", RoleArgs.builder()
            .name("doppler_secrets_manager")
            .assumeRolePolicy(serializeJson(
                jsonObject(
                    jsonProperty("Version", "2012-10-17"),
                    jsonProperty("Statement", jsonArray(jsonObject(
                        jsonProperty("Effect", "Allow"),
                        jsonProperty("Action", "sts:AssumeRole"),
                        jsonProperty("Principal", jsonObject(
                            jsonProperty("AWS", "arn:aws:iam::299900769157:user/doppler-integration-operator")
                        )),
                        jsonProperty("Condition", jsonObject(
                            jsonProperty("StringEquals", jsonObject(
                                jsonProperty("sts:ExternalId", "<YOUR_WORKPLACE_SLUG>")
                            ))
                        ))
                    )))
                )))
            .inlinePolicies(RoleInlinePolicyArgs.builder()
                .name("doppler_secret_manager")
                .policy(serializeJson(
                    jsonObject(
                        jsonProperty("Version", "2012-10-17"),
                        jsonProperty("Statement", jsonArray(jsonObject(
                            jsonProperty("Action", jsonArray(
                                "secretsmanager:GetSecretValue", 
                                "secretsmanager:DescribeSecret", 
                                "secretsmanager:PutSecretValue", 
                                "secretsmanager:CreateSecret", 
                                "secretsmanager:DeleteSecret", 
                                "secretsmanager:TagResource", 
                                "secretsmanager:UpdateSecret"
                            )),
                            jsonProperty("Effect", "Allow"),
                            jsonProperty("Resource", "*")
                        )))
                    )))
                .build())
            .build());

        var prod = new AwsSecretsManager("prod", AwsSecretsManagerArgs.builder()
            .name("Production")
            .assumeRoleArn(dopplerSecretsManager.arn())
            .build());

        var backendProd = new AwsSecretsManager("backendProd", AwsSecretsManagerArgs.builder()
            .integration(prod.id())
            .project("backend")
            .config("prd")
            .region("us-east-1")
            .path("/backend/")
            .tags(Map.of("myTag", "enabled"))
            .deleteBehavior("leave_in_target")
            .build());

    }
}
Copy
resources:
  dopplerSecretsManager:
    type: aws:iam:Role
    name: doppler_secrets_manager
    properties:
      name: doppler_secrets_manager
      assumeRolePolicy:
        fn::toJSON:
          Version: 2012-10-17
          Statement:
            - Effect: Allow
              Action: sts:AssumeRole
              Principal:
                AWS: arn:aws:iam::299900769157:user/doppler-integration-operator
              Condition:
                StringEquals:
                  sts:ExternalId: <YOUR_WORKPLACE_SLUG>
      inlinePolicies:
        - name: doppler_secret_manager
          policy:
            fn::toJSON:
              Version: 2012-10-17
              Statement:
                - Action:
                    - secretsmanager:GetSecretValue
                    - secretsmanager:DescribeSecret
                    - secretsmanager:PutSecretValue
                    - secretsmanager:CreateSecret
                    - secretsmanager:DeleteSecret
                    - secretsmanager:TagResource
                    - secretsmanager:UpdateSecret
                  Effect: Allow
                  Resource: '*'
  prod:
    type: doppler:integration:AwsSecretsManager
    properties:
      name: Production
      assumeRoleArn: ${dopplerSecretsManager.arn}
  backendProd:
    type: doppler:secretsSync:AwsSecretsManager
    name: backend_prod
    properties:
      integration: ${prod.id}
      project: backend
      config: prd
      region: us-east-1
      path: /backend/
      tags:
        myTag: enabled
      deleteBehavior: leave_in_target
Copy

Create AwsSecretsManager Resource

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

Constructor syntax

new AwsSecretsManager(name: string, args: AwsSecretsManagerArgs, opts?: CustomResourceOptions);
@overload
def AwsSecretsManager(resource_name: str,
                      args: AwsSecretsManagerArgs,
                      opts: Optional[ResourceOptions] = None)

@overload
def AwsSecretsManager(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      config: Optional[str] = None,
                      integration: Optional[str] = None,
                      path: Optional[str] = None,
                      project: Optional[str] = None,
                      region: Optional[str] = None,
                      delete_behavior: Optional[str] = None,
                      kms_key_id: Optional[str] = None,
                      tags: Optional[Mapping[str, str]] = None,
                      update_metadata: Optional[bool] = None)
func NewAwsSecretsManager(ctx *Context, name string, args AwsSecretsManagerArgs, opts ...ResourceOption) (*AwsSecretsManager, error)
public AwsSecretsManager(string name, AwsSecretsManagerArgs args, CustomResourceOptions? opts = null)
public AwsSecretsManager(String name, AwsSecretsManagerArgs args)
public AwsSecretsManager(String name, AwsSecretsManagerArgs args, CustomResourceOptions options)
type: doppler:secretsSync:AwsSecretsManager
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. AwsSecretsManagerArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. AwsSecretsManagerArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. AwsSecretsManagerArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. AwsSecretsManagerArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. AwsSecretsManagerArgs
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 dopplerAwsSecretsManagerResource = new Doppler.SecretsSync.AwsSecretsManager("dopplerAwsSecretsManagerResource", new()
{
    Config = "string",
    Integration = "string",
    Path = "string",
    Project = "string",
    Region = "string",
    DeleteBehavior = "string",
    KmsKeyId = "string",
    Tags = 
    {
        { "string", "string" },
    },
    UpdateMetadata = false,
});
Copy
example, err := secretsSync.NewAwsSecretsManager(ctx, "dopplerAwsSecretsManagerResource", &secretsSync.AwsSecretsManagerArgs{
	Config:         pulumi.String("string"),
	Integration:    pulumi.String("string"),
	Path:           pulumi.String("string"),
	Project:        pulumi.String("string"),
	Region:         pulumi.String("string"),
	DeleteBehavior: pulumi.String("string"),
	KmsKeyId:       pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	UpdateMetadata: pulumi.Bool(false),
})
Copy
var dopplerAwsSecretsManagerResource = new AwsSecretsManager("dopplerAwsSecretsManagerResource", AwsSecretsManagerArgs.builder()
    .config("string")
    .integration("string")
    .path("string")
    .project("string")
    .region("string")
    .deleteBehavior("string")
    .kmsKeyId("string")
    .tags(Map.of("string", "string"))
    .updateMetadata(false)
    .build());
Copy
doppler_aws_secrets_manager_resource = doppler.secrets_sync.AwsSecretsManager("dopplerAwsSecretsManagerResource",
    config="string",
    integration="string",
    path="string",
    project="string",
    region="string",
    delete_behavior="string",
    kms_key_id="string",
    tags={
        "string": "string",
    },
    update_metadata=False)
Copy
const dopplerAwsSecretsManagerResource = new doppler.secretssync.AwsSecretsManager("dopplerAwsSecretsManagerResource", {
    config: "string",
    integration: "string",
    path: "string",
    project: "string",
    region: "string",
    deleteBehavior: "string",
    kmsKeyId: "string",
    tags: {
        string: "string",
    },
    updateMetadata: false,
});
Copy
type: doppler:secretsSync:AwsSecretsManager
properties:
    config: string
    deleteBehavior: string
    integration: string
    kmsKeyId: string
    path: string
    project: string
    region: string
    tags:
        string: string
    updateMetadata: false
Copy

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

Config
This property is required.
Changes to this property will trigger replacement.
string
The name of the Doppler config
Integration
This property is required.
Changes to this property will trigger replacement.
string
The slug of the integration to use for this sync
Path
This property is required.
Changes to this property will trigger replacement.
string
The path to the secret in AWS
Project
This property is required.
Changes to this property will trigger replacement.
string
The name of the Doppler project
Region
This property is required.
Changes to this property will trigger replacement.
string
The AWS region
DeleteBehavior string
The behavior to be performed on the secrets in the sync target when this resource is deleted or recreated. Either leave_in_target (default) or delete_from_target.
KmsKeyId Changes to this property will trigger replacement. string
The AWS KMS key used to encrypt the secret (ID, Alias, or ARN)
Tags Changes to this property will trigger replacement. Dictionary<string, string>
AWS tags to attach to the secrets
UpdateMetadata Changes to this property will trigger replacement. bool
If enabled, Doppler will update the AWS secret metadata (e.g. KMS key) during every sync. If disabled, Doppler will only set secret metadata for new AWS secrets. Note that Doppler never updates tags for existing AWS secrets.
Config
This property is required.
Changes to this property will trigger replacement.
string
The name of the Doppler config
Integration
This property is required.
Changes to this property will trigger replacement.
string
The slug of the integration to use for this sync
Path
This property is required.
Changes to this property will trigger replacement.
string
The path to the secret in AWS
Project
This property is required.
Changes to this property will trigger replacement.
string
The name of the Doppler project
Region
This property is required.
Changes to this property will trigger replacement.
string
The AWS region
DeleteBehavior string
The behavior to be performed on the secrets in the sync target when this resource is deleted or recreated. Either leave_in_target (default) or delete_from_target.
KmsKeyId Changes to this property will trigger replacement. string
The AWS KMS key used to encrypt the secret (ID, Alias, or ARN)
Tags Changes to this property will trigger replacement. map[string]string
AWS tags to attach to the secrets
UpdateMetadata Changes to this property will trigger replacement. bool
If enabled, Doppler will update the AWS secret metadata (e.g. KMS key) during every sync. If disabled, Doppler will only set secret metadata for new AWS secrets. Note that Doppler never updates tags for existing AWS secrets.
config
This property is required.
Changes to this property will trigger replacement.
String
The name of the Doppler config
integration
This property is required.
Changes to this property will trigger replacement.
String
The slug of the integration to use for this sync
path
This property is required.
Changes to this property will trigger replacement.
String
The path to the secret in AWS
project
This property is required.
Changes to this property will trigger replacement.
String
The name of the Doppler project
region
This property is required.
Changes to this property will trigger replacement.
String
The AWS region
deleteBehavior String
The behavior to be performed on the secrets in the sync target when this resource is deleted or recreated. Either leave_in_target (default) or delete_from_target.
kmsKeyId Changes to this property will trigger replacement. String
The AWS KMS key used to encrypt the secret (ID, Alias, or ARN)
tags Changes to this property will trigger replacement. Map<String,String>
AWS tags to attach to the secrets
updateMetadata Changes to this property will trigger replacement. Boolean
If enabled, Doppler will update the AWS secret metadata (e.g. KMS key) during every sync. If disabled, Doppler will only set secret metadata for new AWS secrets. Note that Doppler never updates tags for existing AWS secrets.
config
This property is required.
Changes to this property will trigger replacement.
string
The name of the Doppler config
integration
This property is required.
Changes to this property will trigger replacement.
string
The slug of the integration to use for this sync
path
This property is required.
Changes to this property will trigger replacement.
string
The path to the secret in AWS
project
This property is required.
Changes to this property will trigger replacement.
string
The name of the Doppler project
region
This property is required.
Changes to this property will trigger replacement.
string
The AWS region
deleteBehavior string
The behavior to be performed on the secrets in the sync target when this resource is deleted or recreated. Either leave_in_target (default) or delete_from_target.
kmsKeyId Changes to this property will trigger replacement. string
The AWS KMS key used to encrypt the secret (ID, Alias, or ARN)
tags Changes to this property will trigger replacement. {[key: string]: string}
AWS tags to attach to the secrets
updateMetadata Changes to this property will trigger replacement. boolean
If enabled, Doppler will update the AWS secret metadata (e.g. KMS key) during every sync. If disabled, Doppler will only set secret metadata for new AWS secrets. Note that Doppler never updates tags for existing AWS secrets.
config
This property is required.
Changes to this property will trigger replacement.
str
The name of the Doppler config
integration
This property is required.
Changes to this property will trigger replacement.
str
The slug of the integration to use for this sync
path
This property is required.
Changes to this property will trigger replacement.
str
The path to the secret in AWS
project
This property is required.
Changes to this property will trigger replacement.
str
The name of the Doppler project
region
This property is required.
Changes to this property will trigger replacement.
str
The AWS region
delete_behavior str
The behavior to be performed on the secrets in the sync target when this resource is deleted or recreated. Either leave_in_target (default) or delete_from_target.
kms_key_id Changes to this property will trigger replacement. str
The AWS KMS key used to encrypt the secret (ID, Alias, or ARN)
tags Changes to this property will trigger replacement. Mapping[str, str]
AWS tags to attach to the secrets
update_metadata Changes to this property will trigger replacement. bool
If enabled, Doppler will update the AWS secret metadata (e.g. KMS key) during every sync. If disabled, Doppler will only set secret metadata for new AWS secrets. Note that Doppler never updates tags for existing AWS secrets.
config
This property is required.
Changes to this property will trigger replacement.
String
The name of the Doppler config
integration
This property is required.
Changes to this property will trigger replacement.
String
The slug of the integration to use for this sync
path
This property is required.
Changes to this property will trigger replacement.
String
The path to the secret in AWS
project
This property is required.
Changes to this property will trigger replacement.
String
The name of the Doppler project
region
This property is required.
Changes to this property will trigger replacement.
String
The AWS region
deleteBehavior String
The behavior to be performed on the secrets in the sync target when this resource is deleted or recreated. Either leave_in_target (default) or delete_from_target.
kmsKeyId Changes to this property will trigger replacement. String
The AWS KMS key used to encrypt the secret (ID, Alias, or ARN)
tags Changes to this property will trigger replacement. Map<String>
AWS tags to attach to the secrets
updateMetadata Changes to this property will trigger replacement. Boolean
If enabled, Doppler will update the AWS secret metadata (e.g. KMS key) during every sync. If disabled, Doppler will only set secret metadata for new AWS secrets. Note that Doppler never updates tags for existing AWS secrets.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing AwsSecretsManager Resource

Get an existing AwsSecretsManager 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?: AwsSecretsManagerState, opts?: CustomResourceOptions): AwsSecretsManager
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        config: Optional[str] = None,
        delete_behavior: Optional[str] = None,
        integration: Optional[str] = None,
        kms_key_id: Optional[str] = None,
        path: Optional[str] = None,
        project: Optional[str] = None,
        region: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        update_metadata: Optional[bool] = None) -> AwsSecretsManager
func GetAwsSecretsManager(ctx *Context, name string, id IDInput, state *AwsSecretsManagerState, opts ...ResourceOption) (*AwsSecretsManager, error)
public static AwsSecretsManager Get(string name, Input<string> id, AwsSecretsManagerState? state, CustomResourceOptions? opts = null)
public static AwsSecretsManager get(String name, Output<String> id, AwsSecretsManagerState state, CustomResourceOptions options)
resources:  _:    type: doppler:secretsSync:AwsSecretsManager    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Config Changes to this property will trigger replacement. string
The name of the Doppler config
DeleteBehavior string
The behavior to be performed on the secrets in the sync target when this resource is deleted or recreated. Either leave_in_target (default) or delete_from_target.
Integration Changes to this property will trigger replacement. string
The slug of the integration to use for this sync
KmsKeyId Changes to this property will trigger replacement. string
The AWS KMS key used to encrypt the secret (ID, Alias, or ARN)
Path Changes to this property will trigger replacement. string
The path to the secret in AWS
Project Changes to this property will trigger replacement. string
The name of the Doppler project
Region Changes to this property will trigger replacement. string
The AWS region
Tags Changes to this property will trigger replacement. Dictionary<string, string>
AWS tags to attach to the secrets
UpdateMetadata Changes to this property will trigger replacement. bool
If enabled, Doppler will update the AWS secret metadata (e.g. KMS key) during every sync. If disabled, Doppler will only set secret metadata for new AWS secrets. Note that Doppler never updates tags for existing AWS secrets.
Config Changes to this property will trigger replacement. string
The name of the Doppler config
DeleteBehavior string
The behavior to be performed on the secrets in the sync target when this resource is deleted or recreated. Either leave_in_target (default) or delete_from_target.
Integration Changes to this property will trigger replacement. string
The slug of the integration to use for this sync
KmsKeyId Changes to this property will trigger replacement. string
The AWS KMS key used to encrypt the secret (ID, Alias, or ARN)
Path Changes to this property will trigger replacement. string
The path to the secret in AWS
Project Changes to this property will trigger replacement. string
The name of the Doppler project
Region Changes to this property will trigger replacement. string
The AWS region
Tags Changes to this property will trigger replacement. map[string]string
AWS tags to attach to the secrets
UpdateMetadata Changes to this property will trigger replacement. bool
If enabled, Doppler will update the AWS secret metadata (e.g. KMS key) during every sync. If disabled, Doppler will only set secret metadata for new AWS secrets. Note that Doppler never updates tags for existing AWS secrets.
config Changes to this property will trigger replacement. String
The name of the Doppler config
deleteBehavior String
The behavior to be performed on the secrets in the sync target when this resource is deleted or recreated. Either leave_in_target (default) or delete_from_target.
integration Changes to this property will trigger replacement. String
The slug of the integration to use for this sync
kmsKeyId Changes to this property will trigger replacement. String
The AWS KMS key used to encrypt the secret (ID, Alias, or ARN)
path Changes to this property will trigger replacement. String
The path to the secret in AWS
project Changes to this property will trigger replacement. String
The name of the Doppler project
region Changes to this property will trigger replacement. String
The AWS region
tags Changes to this property will trigger replacement. Map<String,String>
AWS tags to attach to the secrets
updateMetadata Changes to this property will trigger replacement. Boolean
If enabled, Doppler will update the AWS secret metadata (e.g. KMS key) during every sync. If disabled, Doppler will only set secret metadata for new AWS secrets. Note that Doppler never updates tags for existing AWS secrets.
config Changes to this property will trigger replacement. string
The name of the Doppler config
deleteBehavior string
The behavior to be performed on the secrets in the sync target when this resource is deleted or recreated. Either leave_in_target (default) or delete_from_target.
integration Changes to this property will trigger replacement. string
The slug of the integration to use for this sync
kmsKeyId Changes to this property will trigger replacement. string
The AWS KMS key used to encrypt the secret (ID, Alias, or ARN)
path Changes to this property will trigger replacement. string
The path to the secret in AWS
project Changes to this property will trigger replacement. string
The name of the Doppler project
region Changes to this property will trigger replacement. string
The AWS region
tags Changes to this property will trigger replacement. {[key: string]: string}
AWS tags to attach to the secrets
updateMetadata Changes to this property will trigger replacement. boolean
If enabled, Doppler will update the AWS secret metadata (e.g. KMS key) during every sync. If disabled, Doppler will only set secret metadata for new AWS secrets. Note that Doppler never updates tags for existing AWS secrets.
config Changes to this property will trigger replacement. str
The name of the Doppler config
delete_behavior str
The behavior to be performed on the secrets in the sync target when this resource is deleted or recreated. Either leave_in_target (default) or delete_from_target.
integration Changes to this property will trigger replacement. str
The slug of the integration to use for this sync
kms_key_id Changes to this property will trigger replacement. str
The AWS KMS key used to encrypt the secret (ID, Alias, or ARN)
path Changes to this property will trigger replacement. str
The path to the secret in AWS
project Changes to this property will trigger replacement. str
The name of the Doppler project
region Changes to this property will trigger replacement. str
The AWS region
tags Changes to this property will trigger replacement. Mapping[str, str]
AWS tags to attach to the secrets
update_metadata Changes to this property will trigger replacement. bool
If enabled, Doppler will update the AWS secret metadata (e.g. KMS key) during every sync. If disabled, Doppler will only set secret metadata for new AWS secrets. Note that Doppler never updates tags for existing AWS secrets.
config Changes to this property will trigger replacement. String
The name of the Doppler config
deleteBehavior String
The behavior to be performed on the secrets in the sync target when this resource is deleted or recreated. Either leave_in_target (default) or delete_from_target.
integration Changes to this property will trigger replacement. String
The slug of the integration to use for this sync
kmsKeyId Changes to this property will trigger replacement. String
The AWS KMS key used to encrypt the secret (ID, Alias, or ARN)
path Changes to this property will trigger replacement. String
The path to the secret in AWS
project Changes to this property will trigger replacement. String
The name of the Doppler project
region Changes to this property will trigger replacement. String
The AWS region
tags Changes to this property will trigger replacement. Map<String>
AWS tags to attach to the secrets
updateMetadata Changes to this property will trigger replacement. Boolean
If enabled, Doppler will update the AWS secret metadata (e.g. KMS key) during every sync. If disabled, Doppler will only set secret metadata for new AWS secrets. Note that Doppler never updates tags for existing AWS secrets.

Package Details

Repository
doppler pulumiverse/pulumi-doppler
License
Apache-2.0
Notes
This Pulumi package is based on the doppler Terraform Provider.