We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24be6ae commit b2a4306Copy full SHA for b2a4306
examples/delete-vms-without-cmek/function_source/cmek.go
@@ -49,7 +49,7 @@ func init() {
49
}
50
51
52
-func RecieveMessage(ctx context.Context, msg *pubsub.Message) error {
+func ReceiveMessage(ctx context.Context, msg *pubsub.Message) error {
53
var event creationEvent
54
json.Unmarshal([]byte(msg.Data), &event)
55
labels := event.Resource.Labels
examples/delete-vms-without-cmek/main.tf
@@ -46,7 +46,7 @@ module "localhost_function" {
46
source = "../.."
47
48
description = "Deletes VMs created with disks not encrypted with CMEK"
- entry_point = "RecieveMessage"
+ entry_point = "ReceiveMessage"
runtime = "go111"
timeout_s = "240"
0 commit comments