sparse-intern-71089
10/18/2018, 9:38 PMwhite-balloon-205
Input<T>
for several inputs. So currently it may not be possible to do this.
Opened https://github.com/pulumi/pulumi-cloud/issues/627 to fix this.full-dress-10026
10/18/2018, 9:58 PMwhite-balloon-205
apiEndpoint.apply(endpoint => {
let nginxService = new cloudAws.Service(...);
});
But creating resources inside an apply
will lead to a couple potential issues:
1. Previews may not correctly track the creation of the resource.
2. The dependency of the Service
on the apiEndpoint
will not be set up correctly. This may mean that the initial deployment might fail, and you would need to retry.
The right thing would be to enable this explicitly on the component though.full-dress-10026
10/18/2018, 10:33 PM