-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #409 from jamesward/patch-1
Fix package urls
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -429,9 +429,9 @@ modules, in a way that is similar to CDK, but with declarative code. | |
Example Pkl template: | ||
|
||
```pkl | ||
amends "package://github.com/ericzbeard/rain/releases/download/v1.8.2/cloudformation@1.8.2/template.pkl" | ||
import "package://github.com/ericzbeard/rain/releases/download/v1.8.2/cloudformation@1.8.2/cloudformation.pkl" as cfn | ||
import "package://github.com/ericzbeard/rain/releases/download/v1.8.2/cloudformation@1.8.2/aws/s3/bucket.pkl" as bucket | ||
amends "package://github.com/aws-cloudformation/cloudformation-pkl/releases/download/[email protected]/cloudformation@0.1.1#/template.pkl" | ||
import "package://github.com/aws-cloudformation/cloudformation-pkl/releases/download/[email protected]/cloudformation@0.1.1#/cloudformation.pkl" as cfn | ||
import "package://github.com/aws-cloudformation/cloudformation-pkl/releases/download/[email protected]/cloudformation@0.1.1#/aws/s3/bucket.pkl" as bucket | ||
Description = "Create a bucket" | ||
|