salmon-beard-79336
09/05/2019, 11:54 AMazure:keyvault:Certificate (test):
error: Plan apply failed: grpc: error while marshaling: proto: field "google.protobuf.Value.Kind" contains invalid UTF-8
const testCertificate = new azure.keyvault.Certificate("test", {
certificatePolicy: {
issuerParameters: {
name: "Self",
},
keyProperties: {
exportable: true,
keySize: 2048,
keyType: "RSA",
reuseKey: true,
},
lifetimeActions: [{
action: {
actionType: "AutoRenew",
},
trigger: {
daysBeforeExpiry: 30,
},
}],
secretProperties: {
contentType: "application/x-pkcs12",
},
x509CertificateProperties: {
// Server Authentication = 1.3.6.1.5.5.7.3.1
// Client Authentication = 1.3.6.1.5.5.7.3.2
extendedKeyUsages: ["1.3.6.1.5.5.7.3.1"],
keyUsages: [
"cRLSign",
"dataEncipherment",
"digitalSignature",
"keyAgreement",
"keyCertSign",
"keyEncipherment",
],
subject: `CN=*.${domainName}`,
subjectAlternativeNames: {
dnsNames: [
// "<http://internal.contoso.com|internal.contoso.com>",
// "domain.hello.world",
],
},
validityInMonths: 12,
},
},
keyVaultId: keyVault.id,
name: "generated-cert",
})
salmon-beard-79336
09/05/2019, 11:55 AMbig-nail-28315
09/05/2019, 2:21 PMquick-action-34599
09/05/2019, 2:58 PMquick-action-34599
09/05/2019, 2:58 PMsome-doctor-62800
09/05/2019, 2:59 PMsome-doctor-62800
09/05/2019, 2:59 PMquick-action-34599
09/05/2019, 3:17 PMquick-action-34599
09/05/2019, 3:17 PMquick-action-34599
09/05/2019, 3:21 PMquick-action-34599
09/05/2019, 3:22 PMquick-action-34599
09/05/2019, 3:23 PMbroad-dog-22463
09/05/2019, 3:23 PMbroad-dog-22463
09/05/2019, 3:23 PMquick-action-34599
09/05/2019, 3:23 PMbroad-dog-22463
09/05/2019, 3:24 PMquick-action-34599
09/05/2019, 3:38 PMgentle-diamond-70147
09/05/2019, 3:39 PMquick-action-34599
09/05/2019, 3:39 PMbitter-dentist-28132
09/05/2019, 3:52 PMwhite-balloon-205
best-xylophone-83824
09/05/2019, 5:26 PMThe most magical thing about Pulumi, however, is that you get all the same predictability guarantees of an infrastructure as code tool, while still embracing general purpose languages.spot on from the blog post. when I spoke about pulumi with colleagues first reaction was that "normal programming language is not declarative" , and therefore it is dangerous to use
worried-city-86458
09/05/2019, 8:44 PMDockerfile
source (https://github.com/pulumi/pulumi/blob/master/dist/docker/Dockerfile)
Always good to know how it was built, so it would be nice if it was linked to from https://hub.docker.com/r/pulumi/pulumi.worried-city-86458
09/05/2019, 9:18 PM<http://get.pulumi.com|get.pulumi.com>
to curl silently. 😛
...
Step 4/5 : RUN curl -fsSL <https://get.pulumi.com> | bash -s -- --version $PULUMI_VERSION && mv ~/.pulumi/bin/* /usr/local/bin && pulumi version
---> Running in 8435a5532c49
=== Installing Pulumi v1.0.0 ===
+ Downloading <https://get.pulumi.com/releases/sdk/pulumi-v1.0.0-linux-x64.tar.gz>...
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 46.3M 100 46.3M 0 0 29.2M 0 0:00:01 0:00:01 --:--:-- 29.2M
+ Extracting to /root/.pulumi/bin
...
worried-city-86458
09/05/2019, 9:19 PMworried-city-86458
09/06/2019, 12:24 AMindex.ts
and following along?wide-judge-30323
09/06/2019, 3:48 AMService
created without helm.
I've recently upgraded pulumi to 1.0 - This cluster has been running for some time, and updates have been ok till now - although we did experience a similar thing when pulumi updated the AMI for the EKS cluster.
Has anyone else observed something similar?best-xylophone-83824
09/06/2019, 9:38 AMnew gcp.Provider("name", {project: "another-project"})
leaks ambient provider credentials into stack unencryptedbest-xylophone-83824
09/06/2019, 1:42 PMinterface NodePoolNodeConfig {
...
oauthScopes?: pulumi.Input<pulumi.Input<string>[]>;
nested Input<>
, is it a problem with code generation or like that by design?icy-engineer-10830
09/06/2019, 2:04 PM