https://pulumi.com logo
#golang
Title
# golang
w

white-balloon-205

12/21/2018, 8:32 PM
Copy code
siteBucket, err := s3.NewBucket(ctx, "s3-website-bucket", &s3.BucketArgs{
			Website: map[string]interface{}{
				"indexDocument": "index.html",
			},
			Tags: map[string]interface{}{
				"name": "hello",
			},
		})
3 Views