bitter-application-91815
10/15/2020, 5:52 PMbitter-application-91815
10/15/2020, 5:53 PMsparse-intern-71089
10/15/2020, 7:26 PMambitious-appointment-66307
10/15/2020, 10:15 PMwonderful-pager-17869
10/15/2020, 10:53 PMwet-sunset-4939
10/16/2020, 4:44 AMerror: could not deserialize deployment: decrypting secret value: failed to decrypt: incorrect passphrase, please set PULUMI_CONFIG_PASSPHRASE to the correct passphrase
when import stack from a file. How to fix this issue?wet-sunset-4939
10/16/2020, 6:46 AMearly-glass-64522
10/16/2020, 7:46 AMthankful-area-1764
10/16/2020, 8:44 AMloud-battery-37784
10/16/2020, 3:11 PMPulumi.yaml
or can they be nested?
`config`: (optional) directory to store stack-specific configuration files, relative to location of.Pulumi.yaml
bright-ghost-66126
10/17/2020, 12:02 AMpkg/tfshim/tfplugin5/provider_test.go
from this repo git@github.com:pulumi/pulumi-terraform-bridge.git
func startTestProvider(t *testing.T) (*provider, bool) {
testProviderPath, err := exec.LookPath("pulumi-terraform-bridge-test-provider")
if !assert.NoError(t, err) {
return nil, false
}
the test fails because pulumi-terraform-bridge-test-provider is missing. Where can I find or build the provider from?freezing-winter-55007
10/17/2020, 5:33 AMpulumi state delete <urn>
and say “screw it” and delete the resources’ children as well? This particular resource has lots of children to remove.gifted-city-99717
10/17/2020, 3:21 PMtf2pulumi
(v0.9.0) on an existing terraform project but get the following error:
error: no resource plugin 'template' found in the workspace or on your $PATH
I think that’s referencing this plugin in the terraform registry but I haven’t been able to pulumi plugin install
it no matter the combination of [kind name version] that I’ve tried. Has anyone run into this?wet-noon-14291
10/17/2020, 10:49 PMbrief-spoon-92183
10/18/2020, 6:52 PMthankful-horse-53271
10/18/2020, 10:17 PMkind-mechanic-53546
10/18/2020, 11:37 PMelegant-island-39916
10/19/2020, 10:25 AMFargateProfile
for EKS in Pulumi Python. An AccessDeniedException
occurs even though the AWS profile executing this has the AdministratorAccess
policy and is able to create many other resources on AWS via Pulumi. Is there anything I can do to diagnose this issue?brainy-policeman-17905
10/19/2020, 10:32 AMbrainy-policeman-17905
10/19/2020, 10:56 AMkind-school-28825
10/19/2020, 4:34 PMenvironment
property for a fargate service. Locally that is possible of course by reading the env
file in development, but when trying to update the infrastructure I want these environment variables to be populated instead. I thought in each stack it is possible to add the variables on the pulumi stack page, at least that's my experience when using terraform. What is the way to go?bored-intern-60856
10/19/2020, 5:27 PMsalmon-australia-89174
10/19/2020, 8:03 PM// ### index.ts
...
const ingress = new k8s.networking.v1.Ingress(appName, {
metadata: appLabels,
spec: {
rules: [...]
}
});
const ingressRoute = new k8s.yaml.ConfigFile(appName, { // <--- here must be a more easy way to configure
file: 'traefik-ingress-route.yaml' // it fully in Typescript
});
...
// ### traefik-ingress-route.yaml
apiVersion: <http://traefik.containo.us/v1alpha1|traefik.containo.us/v1alpha1>
kind: IngressRoute
metadata:
name: myapp
namespace: default
spec:
entryPoints:
- websecure
routes:
- match: Host(`<http://myapp.url.com|myapp.url.com>`) || Host(`<http://www.myapp.url.com|www.myapp.url.com>`)
kind: Rule
services:
- name: myapp
port: 80
tls:
secretName: myapp-cert
tall-needle-56640
10/19/2020, 9:59 PMInputMap<string>
property. Something like
prog:resourceTags:
- BU1: Business
- CC: 12344
var resourceTags = config.RequireObject<Dictionary<string, string>>("resourceTags");
var storageAccount = new Account(storageAccountName, new AccountArgs
{
Tags = resourceTags,
});
But I get an error
Pulumi.Config+ConfigTypeException: Configuration 'PulumiPort:resourceTags' value '[{"BU1":"Business"}]' is not a valid System.Collections.Generic.Dictionary`2How do I do this?
jolly-camera-35709
10/20/2020, 4:56 AMjolly-camera-35709
10/20/2020, 5:43 AMvenv/bin/pip install -r requirements.txt
to install the python module. After installation, I found the executable was placed under /usr/local/bin/, when I type "az -v" at terminal, it obviously found the executable from this location and reported the following errorjolly-camera-35709
10/20/2020, 5:43 AMjolly-camera-35709
10/20/2020, 5:44 AMjolly-camera-35709
10/20/2020, 5:46 AMjolly-camera-35709
10/20/2020, 5:47 AM