com.pulumi.vault.secrets.kotlin.SyncAssociationArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-vault-kotlin Show documentation
Show all versions of pulumi-vault-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.vault.secrets.kotlin
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.vault.secrets.SyncAssociationArgs.builder
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as vault from "@pulumi/vault";
* const kvv2 = new vault.Mount("kvv2", {
* path: "kvv2",
* type: "kv",
* options: {
* version: "2",
* },
* description: "KV Version 2 secret engine mount",
* });
* const token = new vault.kv.SecretV2("token", {
* mount: kvv2.path,
* name: "token",
* dataJson: JSON.stringify({
* dev: "B!gS3cr3t",
* prod: "S3cureP4$$",
* }),
* });
* const gh = new vault.secrets.SyncGhDestination("gh", {
* name: "gh-dest",
* accessToken: accessToken,
* repositoryOwner: repoOwner,
* repositoryName: "repo-name-example",
* secretNameTemplate: "vault_{{ .MountAccessor | lowercase }}_{{ .SecretPath | lowercase }}",
* });
* const ghToken = new vault.secrets.SyncAssociation("gh_token", {
* name: gh.name,
* type: gh.type,
* mount: kvv2.path,
* secretName: token.name,
* });
* ```
* ```python
* import pulumi
* import json
* import pulumi_vault as vault
* kvv2 = vault.Mount("kvv2",
* path="kvv2",
* type="kv",
* options={
* "version": "2",
* },
* description="KV Version 2 secret engine mount")
* token = vault.kv.SecretV2("token",
* mount=kvv2.path,
* name="token",
* data_json=json.dumps({
* "dev": "B!gS3cr3t",
* "prod": "S3cureP4$$",
* }))
* gh = vault.secrets.SyncGhDestination("gh",
* name="gh-dest",
* access_token=access_token,
* repository_owner=repo_owner,
* repository_name="repo-name-example",
* secret_name_template="vault_{{ .MountAccessor | lowercase }}_{{ .SecretPath | lowercase }}")
* gh_token = vault.secrets.SyncAssociation("gh_token",
* name=gh.name,
* type=gh.type,
* mount=kvv2.path,
* secret_name=token.name)
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using System.Text.Json;
* using Pulumi;
* using Vault = Pulumi.Vault;
* return await Deployment.RunAsync(() =>
* {
* var kvv2 = new Vault.Mount("kvv2", new()
* {
* Path = "kvv2",
* Type = "kv",
* Options =
* {
* { "version", "2" },
* },
* Description = "KV Version 2 secret engine mount",
* });
* var token = new Vault.Kv.SecretV2("token", new()
* {
* Mount = kvv2.Path,
* Name = "token",
* DataJson = JsonSerializer.Serialize(new Dictionary
* {
* ["dev"] = "B!gS3cr3t",
* ["prod"] = "S3cureP4$$",
* }),
* });
* var gh = new Vault.Secrets.SyncGhDestination("gh", new()
* {
* Name = "gh-dest",
* AccessToken = accessToken,
* RepositoryOwner = repoOwner,
* RepositoryName = "repo-name-example",
* SecretNameTemplate = "vault_{{ .MountAccessor | lowercase }}_{{ .SecretPath | lowercase }}",
* });
* var ghToken = new Vault.Secrets.SyncAssociation("gh_token", new()
* {
* Name = gh.Name,
* Type = gh.Type,
* Mount = kvv2.Path,
* SecretName = token.Name,
* });
* });
* ```
* ```go
* package main
* import (
* "encoding/json"
* "github.com/pulumi/pulumi-vault/sdk/v6/go/vault"
* "github.com/pulumi/pulumi-vault/sdk/v6/go/vault/kv"
* "github.com/pulumi/pulumi-vault/sdk/v6/go/vault/secrets"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* kvv2, err := vault.NewMount(ctx, "kvv2", &vault.MountArgs{
* Path: pulumi.String("kvv2"),
* Type: pulumi.String("kv"),
* Options: pulumi.Map{
* "version": pulumi.Any("2"),
* },
* Description: pulumi.String("KV Version 2 secret engine mount"),
* })
* if err != nil {
* return err
* }
* tmpJSON0, err := json.Marshal(map[string]interface{}{
* "dev": "B!gS3cr3t",
* "prod": "S3cureP4$$",
* })
* if err != nil {
* return err
* }
* json0 := string(tmpJSON0)
* token, err := kv.NewSecretV2(ctx, "token", &kv.SecretV2Args{
* Mount: kvv2.Path,
* Name: pulumi.String("token"),
* DataJson: pulumi.String(json0),
* })
* if err != nil {
* return err
* }
* gh, err := secrets.NewSyncGhDestination(ctx, "gh", &secrets.SyncGhDestinationArgs{
* Name: pulumi.String("gh-dest"),
* AccessToken: pulumi.Any(accessToken),
* RepositoryOwner: pulumi.Any(repoOwner),
* RepositoryName: pulumi.String("repo-name-example"),
* SecretNameTemplate: pulumi.String("vault_{{ .MountAccessor | lowercase }}_{{ .SecretPath | lowercase }}"),
* })
* if err != nil {
* return err
* }
* _, err = secrets.NewSyncAssociation(ctx, "gh_token", &secrets.SyncAssociationArgs{
* Name: gh.Name,
* Type: gh.Type,
* Mount: kvv2.Path,
* SecretName: token.Name,
* })
* 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.vault.Mount;
* import com.pulumi.vault.MountArgs;
* import com.pulumi.vault.kv.SecretV2;
* import com.pulumi.vault.kv.SecretV2Args;
* import com.pulumi.vault.secrets.SyncGhDestination;
* import com.pulumi.vault.secrets.SyncGhDestinationArgs;
* import com.pulumi.vault.secrets.SyncAssociation;
* import com.pulumi.vault.secrets.SyncAssociationArgs;
* 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 kvv2 = new Mount("kvv2", MountArgs.builder()
* .path("kvv2")
* .type("kv")
* .options(Map.of("version", "2"))
* .description("KV Version 2 secret engine mount")
* .build());
* var token = new SecretV2("token", SecretV2Args.builder()
* .mount(kvv2.path())
* .name("token")
* .dataJson(serializeJson(
* jsonObject(
* jsonProperty("dev", "B!gS3cr3t"),
* jsonProperty("prod", "S3cureP4$$")
* )))
* .build());
* var gh = new SyncGhDestination("gh", SyncGhDestinationArgs.builder()
* .name("gh-dest")
* .accessToken(accessToken)
* .repositoryOwner(repoOwner)
* .repositoryName("repo-name-example")
* .secretNameTemplate("vault_{{ .MountAccessor | lowercase }}_{{ .SecretPath | lowercase }}")
* .build());
* var ghToken = new SyncAssociation("ghToken", SyncAssociationArgs.builder()
* .name(gh.name())
* .type(gh.type())
* .mount(kvv2.path())
* .secretName(token.name())
* .build());
* }
* }
* ```
* ```yaml
* resources:
* kvv2:
* type: vault:Mount
* properties:
* path: kvv2
* type: kv
* options:
* version: '2'
* description: KV Version 2 secret engine mount
* token:
* type: vault:kv:SecretV2
* properties:
* mount: ${kvv2.path}
* name: token
* dataJson:
* fn::toJSON:
* dev: B!gS3cr3t
* prod: S3cureP4$$
* gh:
* type: vault:secrets:SyncGhDestination
* properties:
* name: gh-dest
* accessToken: ${accessToken}
* repositoryOwner: ${repoOwner}
* repositoryName: repo-name-example
* secretNameTemplate: vault_{{ .MountAccessor | lowercase }}_{{ .SecretPath | lowercase }}
* ghToken:
* type: vault:secrets:SyncAssociation
* name: gh_token
* properties:
* name: ${gh.name}
* type: ${gh.type}
* mount: ${kvv2.path}
* secretName: ${token.name}
* ```
*
* @property mount Specifies the mount where the secret is located.
* @property name Specifies the name of the destination.
* @property namespace The namespace to provision the resource in.
* The value should not contain leading or trailing forward slashes.
* The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
* @property secretName Specifies the name of the secret to synchronize.
* @property type Specifies the destination type.
*/
public data class SyncAssociationArgs(
public val mount: Output? = null,
public val name: Output? = null,
public val namespace: Output? = null,
public val secretName: Output? = null,
public val type: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.vault.secrets.SyncAssociationArgs =
com.pulumi.vault.secrets.SyncAssociationArgs.builder()
.mount(mount?.applyValue({ args0 -> args0 }))
.name(name?.applyValue({ args0 -> args0 }))
.namespace(namespace?.applyValue({ args0 -> args0 }))
.secretName(secretName?.applyValue({ args0 -> args0 }))
.type(type?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [SyncAssociationArgs].
*/
@PulumiTagMarker
public class SyncAssociationArgsBuilder internal constructor() {
private var mount: Output? = null
private var name: Output? = null
private var namespace: Output? = null
private var secretName: Output? = null
private var type: Output? = null
/**
* @param value Specifies the mount where the secret is located.
*/
@JvmName("qcjkcjvsfacwxwuu")
public suspend fun mount(`value`: Output) {
this.mount = value
}
/**
* @param value Specifies the name of the destination.
*/
@JvmName("iwtpnpgkorfrdjgi")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value The namespace to provision the resource in.
* The value should not contain leading or trailing forward slashes.
* The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
*/
@JvmName("ttiumbfgorvkhdrn")
public suspend fun namespace(`value`: Output) {
this.namespace = value
}
/**
* @param value Specifies the name of the secret to synchronize.
*/
@JvmName("pvvfeaaikykojdqq")
public suspend fun secretName(`value`: Output) {
this.secretName = value
}
/**
* @param value Specifies the destination type.
*/
@JvmName("pbceyobhqxvlycwm")
public suspend fun type(`value`: Output) {
this.type = value
}
/**
* @param value Specifies the mount where the secret is located.
*/
@JvmName("bbuynjvdtbxefvlw")
public suspend fun mount(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.mount = mapped
}
/**
* @param value Specifies the name of the destination.
*/
@JvmName("bshwfagnajxvtgfo")
public suspend fun name(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.name = mapped
}
/**
* @param value The namespace to provision the resource in.
* The value should not contain leading or trailing forward slashes.
* The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
*/
@JvmName("wkybahbrprkqaioy")
public suspend fun namespace(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.namespace = mapped
}
/**
* @param value Specifies the name of the secret to synchronize.
*/
@JvmName("topmmkriygcthomh")
public suspend fun secretName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.secretName = mapped
}
/**
* @param value Specifies the destination type.
*/
@JvmName("xxphjtxpmeweakqa")
public suspend fun type(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.type = mapped
}
internal fun build(): SyncAssociationArgs = SyncAssociationArgs(
mount = mount,
name = name,
namespace = namespace,
secretName = secretName,
type = type,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy