pulumi/cmd/pulumi-test-language/testdata/l2-provider-grpc-config-sch.../main.pp

18 lines
531 B
Puppet

# This provider covers scenarios where configuration properties are marked as secret in the schema.
resource "config_grpc_provider" "pulumi:providers:config-grpc" {
secretString1 = "SECRET"
secretInt1 = 16
secretNum1 = 123456.7890
secretBool1 = true
listSecretString1 = ["SECRET", "SECRET2"]
mapSecretString1 = { key1 = "SECRET", key2 = "SECRET2" }
objSecretString1 = { secretX = "SECRET" }
}
resource "config" "config-grpc:index:ConfigFetcher" {
options {
provider = config_grpc_provider
}
}