mirror of https://github.com/pulumi/pulumi.git
23 lines
476 B
Go
23 lines
476 B
Go
package main
|
|
|
|
import (
|
|
"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/storage"
|
|
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
|
|
)
|
|
|
|
func main() {
|
|
pulumi.Run(func(ctx *pulumi.Context) error {
|
|
// Create a GCP resource (Storage Bucket)
|
|
bucket, err := storage.NewBucket(ctx, "my-bucket", &storage.BucketArgs{
|
|
Location: pulumi.String("US"),
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// Export the DNS name of the bucket
|
|
ctx.Export("bucketName", bucket.Url)
|
|
return nil
|
|
})
|
|
}
|