Skip to content

Commit 2e3ef3f

Browse files
committed
Final lil' papercuts
1 parent 0e93e59 commit 2e3ef3f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

content/docs/get-started/aws/deploy-changes.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ Notice that your `index.html` file has been added to the bucket:
108108
```
109109

110110
{{% choosable language javascript %}}
111+
111112
Now that your `index.html` is in your bucket, modify the program file to have the bucket serve `index.html` as a static website. First, set the `website` property on your bucket.
112113

113114
```javascript
@@ -138,6 +139,7 @@ exports.bucketEndpoint = pulumi.interpolate`http://${bucket.websiteEndpoint}`;
138139
{{% /choosable %}}
139140

140141
{{% choosable language typescript %}}
142+
141143
Now that your `index.html` is in your bucket, modify the program file to have the bucket serve `index.html` as a static website. First, set the `website` property on your bucket.
142144

143145
```typescript
@@ -168,6 +170,7 @@ export const bucketEndpoint = pulumi.interpolate`http://${bucket.websiteEndpoint
168170
{{% /choosable %}}
169171

170172
{{% choosable language python %}}
173+
171174
Now that your `index.html` is in your bucket, modify the program file to have the bucket serve `index.html` as a static website. First, set the `website` property on your bucket.
172175

173176
```python
@@ -198,6 +201,7 @@ pulumi.export('bucket_endpoint', pulumi.Output.concat('http://', bucket.website_
198201
{{% /choosable %}}
199202

200203
{{% choosable language go %}}
204+
201205
Now that your `index.html` is in your bucket, modify the program to have the bucket serve `index.html` as a static website. First, set the `Website` property on your bucket.
202206

203207
```go
@@ -228,6 +232,7 @@ ctx.Export("bucketEndpoint", pulumi.Sprintf("http://%s", bucket.WebsiteEndpoint)
228232
{{% /choosable %}}
229233

230234
{{% choosable language csharp %}}
235+
231236
Now that your `index.html` is in your bucket, modify the program to have the bucket serve `index.html` as a static website. First, set the `Website` property on your bucket.
232237

233238
```csharp

0 commit comments

Comments
 (0)