bright-policeman-55860
08/19/2020, 10:06 AMincalculable-dream-27508
08/19/2020, 10:38 AM--replace
flag to pulumi up
narrow-jackal-57645
08/19/2020, 12:19 PMearly-intern-90238
08/19/2020, 12:30 PMhelpful-advantage-49286
08/19/2020, 3:43 PMhelpful-advantage-49286
08/19/2020, 3:43 PMbitter-application-91815
08/19/2020, 5:33 PMbitter-application-91815
08/19/2020, 5:33 PMhigh-greece-86639
08/19/2020, 6:33 PMstocky-spoon-28903
08/19/2020, 6:49 PMhigh-greece-86639
08/19/2020, 6:51 PMbitter-application-91815
08/19/2020, 7:33 PMbitter-application-91815
08/19/2020, 7:33 PMmammoth-address-60583
08/19/2020, 7:42 PMastonishing-quill-88807
08/19/2020, 8:26 PMnarrow-jackal-57645
08/20/2020, 12:17 AMacme/old_name
to acme/new_name
. FYI I do have stacks under this project. Many thanks in advancebest-lifeguard-91445
08/20/2020, 12:39 AMchilly-rainbow-79265
08/20/2020, 5:20 AMhelpful-advantage-49286
08/20/2020, 5:21 AMbumpy-garden-89740
08/20/2020, 8:24 AMbrave-dress-99218
08/20/2020, 2:16 PMaws.route53.Record
(using python
) and use it to render a json
from jinja2
template. then use this json
as a value for container_definitions
parameter in aws.ecs.TaskDefinition
resource. For that I do
route53_record = aws.route53.Record(f"{acc_name}",
.....
}])
and then, using apply
THIS_DIR = os.path.dirname(os.path.abspath(__file__))
j2_env = Environment(loader=FileSystemLoader(THIS_DIR),
trim_blocks=True)
ecs_task_definition = aws.ecs.TaskDefinition(f"{acc_name}",
family=f"ent-{dep_name}-{acc_name}",
container_definitions=j2_env.get_template('templates/acc-td-container-defs.json.j2').render({
'web_servername': pulumi.Output.all(route53_record.fqdn).apply(lambda fqdn: fqdn),
# 'web_servername': route53_record.fqdn.apply(lambda fqdn: fqdn),
...
...
}),
...
...
But as a result I always get something like <pulumi.output.Output object at 0x10d1c0780>
Can you, guys, please help me understand what i'm doing wrong? THanks !brave-dress-99218
08/20/2020, 2:20 PMterraform
for that i used data "template_file"
and it worked well. but I'm not sure that i'm using a right approach in pulumi
brave-angle-33257
08/20/2020, 3:44 PMbrave-angle-33257
08/20/2020, 3:46 PMbest-lifeguard-91445
08/20/2020, 7:55 PMNAME LAST UPDATE RESOURCE COUNT
prod* n/a n/a
ancient-megabyte-79588
08/20/2020, 8:40 PMconst accountPassword = new random.RandomPassword("RabbitMqAdmin_password", {
length: 40,
special: true,
overrideSpecial: `_%@`
}).result;
Which is a password, but the password is available in plain text in the resources view of the web portal.
This doesn't seem like it should be the default behaviour for a .RandomPassword
.faint-motherboard-95438
08/20/2020, 8:52 PMProvider
object)alert-raincoat-81485
08/21/2020, 5:50 AMnarrow-jackal-57645
08/21/2020, 7:51 AMimport * as github from "@pulumi/github";
new github.Repository("my_repo", {
name: "my_repo",
topics: ["typescript"]
})
Creation works perfectly.
then I updated the topics
value to ["javascript"]
and apply, however I got following error:
github:index:Repository (my_repo):
error: 1 error occurred:
* updating urn:pulumi:my_company::github-infrastructure::github:index/repository:Repository::my_repo: PATCH <https://api.github.com/repos/my_company/my_repo>: 404 Not Found []
Wondering if it is a bug or I have missed something important. Many thanks in advancedazzling-sundown-39670
08/21/2020, 8:16 AMpulumi stack export | pulumi stack import
. This is my error:
state file contains errors: child resource urn:pulumi:production::magento2::kubernetes:core/v1:Namespace$kubernetes:apps::redis refers to missing parent urn:pulumi:production::magento2::kubernetes:core/v1:Namespace::production
dazzling-sundown-39670
08/21/2020, 8:16 AMpulumi stack export | pulumi stack import
. This is my error:
state file contains errors: child resource urn:pulumi:production::magento2::kubernetes:core/v1:Namespace$kubernetes:apps::redis refers to missing parent urn:pulumi:production::magento2::kubernetes:core/v1:Namespace::production
billowy-army-68599
08/21/2020, 4:00 PM