salmon-beard-79336
09/16/2019, 4:03 PMManaged Identities
for Azure API Management services?
Required in order to enable custom hostnameConfiguration
const service = new azure.apimanagement.Service(`${prefix}-service`, {
resourceGroupName: resourceGroup.name,
sku: {
name: 'Developer',
capacity: 1
},
publisherName: 'Bob',
publisherEmail: 'alex.b@d.c',
hostnameConfiguration: {
proxies: [{
hostName: domainName,
// certificate: '',
// certificatePassword: '',
keyVaultId: pulumi.interpolate`${keyVault.vaultUri}certificates/generated-cert/90951e125ada483c8a1e76440fa484c7`,
negotiateClientCertificate: false,
defaultSslBinding: true
}]
}
})
incalculable-engineer-92975
09/16/2019, 5:28 PMincalculable-engineer-92975
09/16/2019, 5:28 PMincalculable-engineer-92975
09/16/2019, 5:28 PMincalculable-engineer-92975
09/16/2019, 5:29 PMincalculable-engineer-92975
09/16/2019, 5:29 PMripe-dinner-40604
09/16/2019, 6:44 PMgray-nest-70702
09/16/2019, 8:18 PMmagnificent-petabyte-57952
09/16/2019, 10:04 PM.serverless
folder with serverless framework. thanks!big-nail-28315
09/16/2019, 10:55 PMhundreds-portugal-17080
09/17/2019, 1:20 AMfamous-oxygen-48490
09/17/2019, 8:30 AMdamp-room-71337
09/17/2019, 9:20 AMwarning: extensions/v1beta1/Deployment is not supported by Kubernetes 1.16+ clusters. Use apps/v1/Deployment instead.
from Helm charts I don’t have control over, when deploying to k8s 1.14stale-park-1622
09/17/2019, 9:48 AMboundless-room-36997
09/17/2019, 10:02 AMquick-action-34599
09/17/2019, 3:10 PMquick-action-34599
09/17/2019, 3:10 PMsecret
prop is missing from all the exported objects in pulumi’s outputquick-action-34599
09/17/2019, 3:11 PMsecret: key.encryptedSecret
early-intern-90238
09/17/2019, 5:31 PMearly-intern-90238
09/17/2019, 5:32 PMworried-city-86458
09/17/2019, 6:34 PMfull-dress-10026
09/17/2019, 6:52 PMcool-egg-852
09/17/2019, 7:07 PMbetter-actor-92669
09/17/2019, 7:17 PMlittle-garage-43399
09/17/2019, 9:37 PMnice-airport-15607
09/17/2019, 10:33 PMerror: could not get cloud url: could not load current project: yaml: unmarshal errors:
line 5: cannot unmarshal !!map into string
and wondering anyone else has seen this before?worried-city-86458
09/18/2019, 5:13 AMconst cluster = new eks.Cluster(...)
const nodeGroup = cluster.createNodeGroup(...)
const nodeLoadBalancer = new aws.elb.LoadBalancer(...)
const nodeAutoScalingGroup = nodeGroup.autoScalingGroupName.apply(name => aws.autoscaling.getGroup({ name: name }));
nodeAutoScalingGroup.loadBalancers...? // readonly
sparse-cpu-53654
09/18/2019, 9:39 AMADMIN
of an organisation I'm currently a MEMBER
of? the existing administrator can't find a way to change my role. I'm already an owner of the associated GitHub organisationmammoth-caravan-51104
09/18/2019, 10:46 AMpowerful-ram-56107
09/18/2019, 1:18 PMpulumi
, but when it comes to creating a Cloud SQL Instance pulumi
responds with:
gcp:sql:DatabaseInstance (db1):
error: Plan apply failed: Error, failed to create instance db1: googleapi: Error 403: The client is not authorized to make this request., notAuthorized
Any idea why that might be the case? I'm obviously authorized (with my Google Account, role owner
of the GCP project) via gcloud auth login
and gcloud auth application-default login
powerful-ram-56107
09/18/2019, 1:18 PMpulumi
, but when it comes to creating a Cloud SQL Instance pulumi
responds with:
gcp:sql:DatabaseInstance (db1):
error: Plan apply failed: Error, failed to create instance db1: googleapi: Error 403: The client is not authorized to make this request., notAuthorized
Any idea why that might be the case? I'm obviously authorized (with my Google Account, role owner
of the GCP project) via gcloud auth login
and gcloud auth application-default login
gentle-diamond-70147
09/18/2019, 1:58 PMpowerful-ram-56107
09/18/2019, 2:00 PMgentle-diamond-70147
09/18/2019, 2:01 PMpowerful-ram-56107
09/18/2019, 2:06 PM$ gcloud sql instances create test-db
--database-version MYSQL_5_7 --storage-size=100
succeeds and I can see the DB in the GCloud UI.masterInstanceName
seems to need a special format (maybe sth. like project/<project-id>/<name>
? Pure speculation) Removing it resulted in a working DB 🤦♂️
Thanks @gentle-diamond-70147 for your time!gentle-diamond-70147
09/18/2019, 2:19 PM