com.pulumi.aws.kms.kotlin.Ciphertext.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.kms.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.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.Map
/**
* Builder for [Ciphertext].
*/
@PulumiTagMarker
public class CiphertextResourceBuilder internal constructor() {
public var name: String? = null
public var args: CiphertextArgs = CiphertextArgs()
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 CiphertextArgsBuilder.() -> Unit) {
val builder = CiphertextArgsBuilder()
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(): Ciphertext {
val builtJavaResource = com.pulumi.aws.kms.Ciphertext(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return Ciphertext(builtJavaResource)
}
}
/**
* The KMS ciphertext resource allows you to encrypt plaintext into ciphertext
* by using an AWS KMS customer master key. The value returned by this resource
* is stable across every apply. For a changing ciphertext value each apply, see
* the `aws.kms.Ciphertext` data source.
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as aws from "@pulumi/aws";
* const oauthConfig = new aws.kms.Key("oauth_config", {
* description: "oauth config",
* isEnabled: true,
* });
* const oauth = new aws.kms.Ciphertext("oauth", {
* keyId: oauthConfig.keyId,
* plaintext: `{
* "client_id": "e587dbae22222f55da22",
* "client_secret": "8289575d00000ace55e1815ec13673955721b8a5"
* }
* `,
* });
* ```
* ```python
* import pulumi
* import pulumi_aws as aws
* oauth_config = aws.kms.Key("oauth_config",
* description="oauth config",
* is_enabled=True)
* oauth = aws.kms.Ciphertext("oauth",
* key_id=oauth_config.key_id,
* plaintext="""{
* "client_id": "e587dbae22222f55da22",
* "client_secret": "8289575d00000ace55e1815ec13673955721b8a5"
* }
* """)
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Aws = Pulumi.Aws;
* return await Deployment.RunAsync(() =>
* {
* var oauthConfig = new Aws.Kms.Key("oauth_config", new()
* {
* Description = "oauth config",
* IsEnabled = true,
* });
* var oauth = new Aws.Kms.Ciphertext("oauth", new()
* {
* KeyId = oauthConfig.KeyId,
* Plaintext = @"{
* ""client_id"": ""e587dbae22222f55da22"",
* ""client_secret"": ""8289575d00000ace55e1815ec13673955721b8a5""
* }
* ",
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-aws/sdk/v6/go/aws/kms"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* oauthConfig, err := kms.NewKey(ctx, "oauth_config", &kms.KeyArgs{
* Description: pulumi.String("oauth config"),
* IsEnabled: pulumi.Bool(true),
* })
* if err != nil {
* return err
* }
* _, err = kms.NewCiphertext(ctx, "oauth", &kms.CiphertextArgs{
* KeyId: oauthConfig.KeyId,
* Plaintext: pulumi.String("{\n \"client_id\": \"e587dbae22222f55da22\",\n \"client_secret\": \"8289575d00000ace55e1815ec13673955721b8a5\"\n}\n"),
* })
* 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.kms.Key;
* import com.pulumi.aws.kms.KeyArgs;
* import com.pulumi.aws.kms.Ciphertext;
* import com.pulumi.aws.kms.CiphertextArgs;
* 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 oauthConfig = new Key("oauthConfig", KeyArgs.builder()
* .description("oauth config")
* .isEnabled(true)
* .build());
* var oauth = new Ciphertext("oauth", CiphertextArgs.builder()
* .keyId(oauthConfig.keyId())
* .plaintext("""
* {
* "client_id": "e587dbae22222f55da22",
* "client_secret": "8289575d00000ace55e1815ec13673955721b8a5"
* }
* """)
* .build());
* }
* }
* ```
* ```yaml
* resources:
* oauthConfig:
* type: aws:kms:Key
* name: oauth_config
* properties:
* description: oauth config
* isEnabled: true
* oauth:
* type: aws:kms:Ciphertext
* properties:
* keyId: ${oauthConfig.keyId}
* plaintext: |
* {
* "client_id": "e587dbae22222f55da22",
* "client_secret": "8289575d00000ace55e1815ec13673955721b8a5"
* }
* ```
*
*/
public class Ciphertext internal constructor(
override val javaResource: com.pulumi.aws.kms.Ciphertext,
) : KotlinCustomResource(javaResource, CiphertextMapper) {
/**
* Base64 encoded ciphertext
*/
public val ciphertextBlob: Output
get() = javaResource.ciphertextBlob().applyValue({ args0 -> args0 })
/**
* An optional mapping that makes up the encryption context.
*/
public val context: Output
© 2015 - 2024 Weber Informatics LLC | Privacy Policy