Created
April 5, 2019 23:55
-
-
Save dcaba/d2f19f74dd9646f121d20d206bc4bb56 to your computer and use it in GitHub Desktop.
Pulumi DeleteBeforeReplace not working
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"time" | |
"github.com/pulumi/pulumi-gcp/sdk/go/gcp/compute" | |
"github.com/pulumi/pulumi/sdk/go/pulumi" | |
) | |
func main() { | |
pulumi.Run(func(ctx *pulumi.Context) error { | |
const instancePrefix = "remove-me-when-upgrading" | |
staticIP, err := compute.NewAddress(ctx, instancePrefix+"-ip", &compute.AddressArgs{}) | |
instanceConfig := &compute.InstanceArgs{ | |
MachineType: "f1-micro", | |
BootDisk: map[string]interface{}{ | |
"initializeParams": map[string]string{ | |
"image": "ubuntu-os-cloud/ubuntu-minimal-1804-bionic-v20190403", | |
}, | |
}, | |
MetadataStartupScript: "echo " + time.Now().String(), | |
AllowStoppingForUpdate: true, | |
NetworkInterfaces: []interface{}{ | |
map[string]interface{}{ | |
"network": "default", | |
"accessConfigs": []map[string]interface{}{ | |
map[string]interface{}{ | |
"natIp": staticIP.Address(), | |
}, | |
}, | |
}, | |
}, | |
} | |
_, err = compute.NewInstance(ctx, instancePrefix, instanceConfig, pulumi.ResourceOpt{ | |
DeleteBeforeReplace: true, | |
}) | |
return err | |
}) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment