We have our Cloud Formation templates stored within an S3 bucket. The bucket is only read accessible by IAM members of our account.
An example fetch of the cloud formation template, using the AWS CLI, can be accomplished using the following:
aws s3 cp s3://example-bucket/cloud-formation.json ./local.json
Sfn could be enhanced to support sourcing templates from an S3 bucket using the same notation:
sfn create foo-bar --debug --file s3://example-bucket/cloud-formation.json
I'm happy to open a pull-request and attempt to implement this feature myself however I wanted to confirm this enhancement is sensible.
Cheers!
We have our Cloud Formation templates stored within an S3 bucket. The bucket is only read accessible by IAM members of our account.
An example fetch of the cloud formation template, using the AWS CLI, can be accomplished using the following:
aws s3 cp s3://example-bucket/cloud-formation.json ./local.jsonSfn could be enhanced to support sourcing templates from an S3 bucket using the same notation:
sfn create foo-bar --debug --file s3://example-bucket/cloud-formation.jsonI'm happy to open a pull-request and attempt to implement this feature myself however I wanted to confirm this enhancement is sensible.
Cheers!