refined-painter-68689
07/21/2023, 12:45 AMbillowy-army-68599
refined-painter-68689
07/21/2023, 2:07 AMsiteBucket, err := s3.NewBucket(ctx, "s3-website-bucket", &s3.BucketArgs{
Website: s3.BucketWebsiteArgs{
IndexDocument: pulumi.String("index.html"),
},
})
Similarly, if I have to create an RDS instance, I'll have to create a different object for it. Is it possible to NOT have to this specific to each object and simply rely on a Pulumi.yaml
to have all the required objects and their options set?billowy-army-68599
siteBucket
here is inside the Pulumi program.
You can define your pulumi program in any language you want, and drive it using automation api using any other language. Pulumi supports YAML as an authoring mechansm for Pulumi program: https://www.pulumi.com/docs/languages-sdks/yaml/
Which can then be driven from the automation apirefined-painter-68689
07/21/2023, 4:03 AM