You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+21Lines changed: 21 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -863,6 +863,27 @@ end
863
863
864
864
```
865
865
866
+
### Publishing Additonal Artifacts
867
+
868
+
If you need to publish additonal files along with your cloudformation templates you can use the following DSL:
869
+
870
+
```ruby
871
+
CfhighlanderTemplate do
872
+
Name 'my_app'
873
+
PublishArtifact file: "my-apigateway-spec.yaml"
874
+
end
875
+
```
876
+
877
+
This will upload the file `my-apigateway-spec.yaml` to the s3 destnation/distribution bucket using the default s3 prefix. If you want to override the s3 key you can use
0 commit comments