bitter-island-28909
02/01/2019, 4:03 PMearly-musician-41645
02/01/2019, 10:33 PM$ node -v
v8.14.0
$ npm -v
6.4.1
Any ideas?early-musician-41645
02/01/2019, 10:33 PMearly-musician-41645
02/01/2019, 10:37 PMearly-musician-41645
02/01/2019, 10:58 PMearly-musician-41645
02/01/2019, 11:23 PM// Create some namespaces
for (let name of config.require("dev-namespaces").split(",")) {
console.log(name);
let ns = new k8s.core.v1.Namespace("mustang-"+name, {
metadata: {
name: name,
labels: {
name: name,
},
},
}, {provider: cluster.provider});
}
important-carpenter-15282
02/02/2019, 1:57 AMfull-dress-10026
02/02/2019, 4:23 PMchilly-photographer-60932
02/02/2019, 5:44 PMwaf
rule in aws
.
function wafRuleToAllowIpAddress(ipCIDRBlock: string, name: string) {
const aws_waf_ipset_ipset = new aws.waf.IpSet("ipset", {
ipSetDescriptors: [
{
type: "IPV4",
value: ipCIDRBlock
}
],
name: "tfIPSet"
});
const aws_waf_rule_wafrule = new aws.waf.Rule(
"wafrule",
{
metricName: "tfWAFRule",
name: "tfWAFRule",
predicates: [
{
dataId: aws_waf_ipset_ipset.id,
negated: false,
type: "IPMatch"
}
]
},
{ dependsOn: [aws_waf_ipset_ipset] }
);
return aws_waf_rule_wafrule;
}
This is to apply to the Cloudfront
. But the issue is it is creating it in a region and the cloudfront
is global.tall-librarian-49374
02/02/2019, 8:42 PMbrainy-magician-83981
02/02/2019, 11:10 PMbrew upgrade pulumi
... and I'm getting upgraded to v0.16.12. So the warning error shows up on pulumi commands that v0.16.14 is available for upgrade.full-dress-10026
02/03/2019, 1:27 AMtall-librarian-49374
02/04/2019, 5:18 PMhelpful-ice-5738
02/04/2019, 6:32 PMearly-musician-41645
02/04/2019, 10:00 PME0204 13:58:59.709463 351850 memcache.go:126] couldn't get current server API group list; will keep using cached value. (Unauthorized)
early-musician-41645
02/04/2019, 11:02 PMpulumi up
, destroy
, or refresh
on a stack (as tracked in the thread above ^). Is there a way to force destroy all resources and skip any errors?early-musician-41645
02/04/2019, 11:02 PMsparse-tiger-67367
02/04/2019, 11:10 PMorange-tailor-85423
02/04/2019, 11:16 PMorange-tailor-85423
02/04/2019, 11:16 PMorange-tailor-85423
02/04/2019, 11:17 PMfull-dress-10026
02/04/2019, 11:45 PMbrainy-magician-83981
02/05/2019, 5:35 AMstocky-spoon-28903
02/05/2019, 11:17 AMstocky-spoon-28903
02/05/2019, 11:17 AMbrainy-magician-83981
02/05/2019, 4:27 PMstocky-spoon-28903
02/05/2019, 4:29 PMstocky-spoon-28903
02/05/2019, 4:30 PMbrainy-magician-83981
02/05/2019, 5:16 PMstocky-spoon-28903
02/05/2019, 5:40 PMstocky-spoon-28903
02/05/2019, 5:40 PMbrainy-magician-83981
02/05/2019, 9:25 PMterraform import
. It probably doesn't exists ... but a script that can read a pulumi export state file and execute the appropriate terraform import
for all the resources to generate the terraform files. This in theory should work I believe 🙂stocky-spoon-28903
02/05/2019, 11:06 PMbrainy-magician-83981
02/08/2019, 4:53 PM