witty-alarm-17249
05/20/2019, 10:40 AMwitty-alarm-17249
05/20/2019, 10:40 AMwitty-alarm-17249
05/20/2019, 10:41 AMstocky-spoon-28903
05/20/2019, 10:48 AMStackReference
is a resource underneathwitty-alarm-17249
05/20/2019, 10:54 AMbillowy-garage-68819
05/20/2019, 2:45 PMbillowy-garage-68819
05/20/2019, 3:36 PMcreamy-jelly-91590
05/20/2019, 3:54 PMstocky-spoon-28903
05/20/2019, 3:55 PMname
explicitlycreamy-jelly-91590
05/20/2019, 3:56 PMstocky-spoon-28903
05/20/2019, 3:56 PMcreamy-jelly-91590
05/20/2019, 3:57 PMfew-dog-41530
05/20/2019, 8:09 PMfew-dog-41530
05/20/2019, 8:09 PMworried-engineer-33884
05/20/2019, 9:29 PMfresh-flag-12765
05/21/2019, 4:20 PM@pulumi/pulumi
. Some require 0.17, some require 0.16...billions-architect-86650
05/21/2019, 4:40 PMbrave-angle-33257
05/21/2019, 6:05 PMerror: could not deserialize deployment: unknown secrets provider type
busy-umbrella-36067
05/21/2019, 7:55 PMnamespace
in ChartOpts
doesn’t seem to do it https://pulumi.io/reference/pkg/nodejs/@pulumi/kubernetes/helm/v2/#ChartOpts-namespacefierce-dinner-20116
05/21/2019, 8:20 PM@pulumi/aws: 0.18.3 -> 0.18.4
, pulumi wants to replace my rds subnet group, rds instance, and DLM policy even after no other changes are made
Not sure how to repro, and my setup has some sensitive info in it. Could I pm relevant info to someone?proud-tiger-5743
05/21/2019, 8:25 PMcloud.Table
is failing with a requirement of Missing required property 'readCapacity'
This wasn't a requirement before, and adding
new cloud.Table("assetTable", "id","string",{
readCapacity: 5,
writeCapacity: 5
});
doesn't seem to fix itearly-musician-41645
05/21/2019, 9:37 PMeks.Cluster
provider using a StackReference
? I'd like to create a new namespace in a cluster, but the namespace creation is in a separate stack from the one where the cluster is defined/createdfull-dress-10026
05/21/2019, 10:05 PMpulumi up
error: could not deserialize deployment: unknown secrets provider type
Any idea what would cause this? I have v0.17.12
of pulumi installed and my project uses the same version.early-musician-41645
05/21/2019, 10:30 PMfunction getSecret
getSecret(args?: GetSecretArgs, opts?: pulumi.InvokeOptions): Promise<GetSecretResult>
Retrieve metadata information about a Secrets Manager secret. To retrieve a secret value, see the aws_secretsmanager_secret_version data source.
The code comment links here:
https://www.terraform.io/docs/providers/aws/d/secretsmanager_secret_version.html
After looking through the code and the reference I still don't know how to retrieve a secret value.
Any pointers?big-glass-16858
05/22/2019, 12:24 PMregisterOutputs()
, for example gh:jen20/pulumi-aws-vpc does not look to have one but the docs says it is recommended, should all the exported values by registered in registerOutputs()
? . Also, is it okay to access directly members of an ComponentRessource Instance ? let's say I have a something like this :
class MyRes(ComponentResource):
def __init__(self, str_example: pulumi.Input[str], opts=None) -> None:
props = {
"str_example": str_example,
}
super(MyRes, self).__init__(
'custom:my_res',
name,
props,
opts)
self.str_example = str_example
self.register_outputs({})
my_res = MyRes('example')
# use my_res.str_example
It seems to work just fine (getting type pulumi.Output[T]) , is that incorrect ?few-processor-86645
05/22/2019, 12:38 PMbetter-rainbow-14549
05/22/2019, 2:01 PMtall-librarian-49374
05/22/2019, 2:39 PMbetter-rainbow-14549
05/22/2019, 2:46 PMnew azure.dns.NsRecord(`${args.ZoneArgs.name}`, {
name: args.ZoneArgs.name,
resourceGroupName: parentZone.resourceGroupName,
zoneName: parentZone.name,
record: pulumi.output(dnsZone.nameServers).apply(x => x.map(y => ({ nsdname: y }))),
ttl: args.Ttl
});
but it always wants to update the resource - I suspect azure is shuffling the records order around to load balance the servers in some way, it's only ever the order that changes. Is the best workaround just to sort them?better-rainbow-14549
05/22/2019, 3:44 PMerror: azure:containerservice/kubernetesCluster:KubernetesCluster resource 'Operations-AKS' has a problem: "linux_profile.0.ssh_key": required field is not set
error: azure:containerservice/kubernetesCluster:KubernetesCluster resource 'Operations-AKS' has a problem: linux_profile.0: invalid or unknown key: ssh_keys