sparse-intern-71089
09/21/2018, 10:46 PMwhite-balloon-205
let service = new cloud.Service("basic-web", {
containers: {
nginx: {
build: "./app",
memory: 256,
ports: [{port: 8080}]
}
},
replicas: 2
});
Then changed to this:
let service = new cloud.Service("basic-web", {
containers: {
basic_web: {
build: "./app",
memory: 256,
ports: [{port: 8080}]
}
},
replicas: 2
});
Which resulted in:
error: Plan apply failed: 1 error occurred:
* creating urn:pulumi:basic-web-container-dev::basic-web-container::cloud:service:Service$aws:ecs/service:Service::basic-web: timeout while waiting for state to become 'true' (last state: 'false', timeout: 10m0s)
Is that right?
That sounds like it may be a bug in @pulumi/cloud
- I'll try to reproduce if this is the steps you took.full-dress-10026
09/21/2018, 10:50 PM