billions-waitress-26583
11/06/2020, 4:37 AMbillowy-laptop-45963
11/06/2020, 5:08 AMbillowy-laptop-45963
11/06/2020, 5:12 AMearly-kite-86569
11/06/2020, 6:04 AMpulumi
isn't installed but it should be installed as a part of my build setup.
Link to project deps
Link to workflow file
Link to the build log (go to pulumi-preview
job)
Any help would be greatly appreciated!nutritious-shampoo-16116
11/06/2020, 9:40 AMproud-afternoon-49521
11/06/2020, 11:06 AMnice-postman-4638
11/06/2020, 12:55 PMexport DATABASE_PASSWORD=$(pulumi config get dbPassword)
but how to I stop this from printing into it:
warning: A new version of Pulumi is available. To upgrade from version '2.12.1' to '2.13.0', visit <https://pulumi.com/docs/reference/install/> for manual instructions and release notes.
red-keyboard-36959
11/06/2020, 1:00 PMlemon-tomato-90786
11/06/2020, 4:31 PMhundreds-toddler-20724
11/06/2020, 7:06 PMpanic: interface conversion: interface {} is nil, not map[string]interface {}
cool-egg-852
11/06/2020, 8:09 PMbillowy-laptop-45963
11/06/2020, 9:02 PMbest-lifeguard-91445
11/07/2020, 2:05 AMstocky-spoon-28903
11/07/2020, 2:47 AMblue-pilot-69163
11/07/2020, 9:26 PMred-keyboard-36959
11/08/2020, 12:21 AMstocky-spoon-28903
11/08/2020, 4:31 AMwonderful-pager-17869
11/08/2020, 7:07 PMPulumi understands the inter-stack dependency for scenarios like cascading updates.
, is there any information on cascading updates for deploying different stacks?wet-sunset-4939
11/09/2020, 4:42 AMError: Failed to retrieve the host keys: {"Code":"Unauthorized","Message":"Encountered an error (Forbidden) from extensions API.","Target":null,"Details":[{"Message":"Encountered an error (Forbidden) from extensions API."},{"Code":"Unauthorized"},{"ErrorEntity":{"Code":"Unauthorized","Message":"Encountered an error (Forbidden) from extensions API."}}],"Innererror":null}
victorious-analyst-18771
11/09/2020, 7:53 AMelegant-island-39916
11/09/2020, 1:00 PMScalingPolicy
for MSK EBS?millions-judge-24978
11/09/2020, 6:31 PMDiagnostics:
pulumi:providers:datadog (default_3_10_1):
error: no resource plugin 'datadog-v3.10.1' found in the workspace or on your $PATH, install the plugin using `pulumi plugin install resource datadog v3.10.1`
I am very confused by this error since there are no versions of anything datadog related >2 that I can tellloud-egg-62954
11/09/2020, 9:53 PMbumpy-photographer-59590
11/10/2020, 12:43 AMbumpy-photographer-59590
11/10/2020, 12:44 AMexports.publicIp = ec2Instance.publicIp.apply(res => res);
exports.publicHostName = ec2Instance.publicDns.apply(res => res);
sticky-bear-14421
11/10/2020, 9:29 AMsticky-translator-17495
11/10/2020, 9:38 AMstack.setConfig()
to set a config value using a path? Similar to the CLI --path
flag? I cannot find any docs about it 😞bright-orange-69401
11/10/2020, 12:12 PMmy_bucket = s3.Bucket(resource_name="my-bucket", bucket="my-bucket-eu-west-1")
Then in a different module simply:
from storage import my_bucket
print(my_bucket.bucket)
I know there's the matter of the bucket
being a Promise, which should be resolved at provisioning time, but in my cast since I hard-coded my class attribute then I should be able to pull it regardless of provisioning, right ?
My use-case here is to have config-as-code, which is common practice in Python (cf. Django, Flask, etc.) : having a Python module that contains the configs, and then using that to cascade onto other tools (for example to generate settings for AWS Amplify directly from Pulumi, or a Github Actions YAML file directly based on the Pulumi code).
I could simply create a settings.py
file and define some of my hard-coded infra attributes there then import those in Pulumi, but that would be messy as there may be a lot of parameters to set.
In my mind, Pulumi is the "single source of definition" of my stack, so I intend its data structures to be my "settings"... and config-as-code makes as much sense as infra-as-code... so why am I stuck with JSON-based declarative configs that I have to pull from pulumi stack output --json
and then post-process in Python ? 🙂careful-nail-88325
11/10/2020, 1:49 PMcareful-nail-88325
11/10/2020, 1:51 PM