Skip to content

Commit

Permalink
Fix DigitalOcean tests (#715)
Browse files Browse the repository at this point in the history
fixes #711
  • Loading branch information
VenelinMartinov authored May 13, 2024
1 parent 18b905d commit c29c948
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/databaseCluster/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const example = new digitalocean.DatabaseCluster("example", {
nodeCount: 1,
region: digitalocean.Region.NYC3,
size: digitalocean.DatabaseSlug.DB_1VPCU1GB,
version: "12",
version: "15",
});

export let name = example.name;
2 changes: 1 addition & 1 deletion examples/volume-cs/MyStack.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ class MyStack : Stack
{
public MyStack()
{
var volume = new DigitalOcean.Volume("demoNameCs", new DigitalOcean.VolumeArgs
var volume = new DigitalOcean.Volume("demonamecs", new DigitalOcean.VolumeArgs
{
Region = "lon1",
Size = 100,
Expand Down
2 changes: 1 addition & 1 deletion examples/volume-go/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
vol, err := digitalocean.NewVolume(ctx, "demoName", &digitalocean.VolumeArgs{
vol, err := digitalocean.NewVolume(ctx, "demoname", &digitalocean.VolumeArgs{
Region: pulumi.String("lon1"),
Size: pulumi.Int(10),
})
Expand Down
2 changes: 1 addition & 1 deletion examples/volume-py/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import pulumi
import pulumi_digitalocean as digitalocean

volume = digitalocean.Volume("demoNamePy",
volume = digitalocean.Volume("demonamepy",
region="lon1", size=100)

pulumi.export("name", volume.name)

0 comments on commit c29c948

Please sign in to comment.