This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
dagger/examples/simple-s3/main.cue
Sam Alba 39f7170cc5 examples: added simple s3 for static website example
Signed-off-by: Sam Alba <sam.alba@gmail.com>
2021-04-14 13:42:54 -07:00

34 lines
568 B
CUE

package main
import (
"dagger.io/aws"
"dagger.io/aws/s3"
)
// AWS Config for credentials and default region
awsConfig: aws.#Config & {
region: *"us-east-1" | string
}
// Name of the S3 bucket to use
bucket: *"hello-s3.infralabs.io" | string
name: string | *"world"
page: """
<html>
</head>
<title>Simple static website on S3</title>
</head>
<h1>Hello!</h1>
<li>Hey \(name)</li>
</html>
"""
deploy: s3.#Put & {
config: awsConfig
sourceInline: page
contentType: "text/html"
target: "s3://\(bucket)/index.html"
}