// ---------------------------------------------------------------------------- // // *** AUTO GENERATED CODE *** AUTO GENERATED CODE *** // // ---------------------------------------------------------------------------- // // This file is automatically generated by Magic Modules and manual // changes will be clobbered when the file is regenerated. // // Please read more about how to change this file in // .github/CONTRIBUTING.md. // // ---------------------------------------------------------------------------- package google import ( "fmt" "log" "reflect" "time" "github.com/hashicorp/terraform/helper/schema" ) func resourceMonitoringNotificationChannel() *schema.Resource { return &schema.Resource{ Create: resourceMonitoringNotificationChannelCreate, Read: resourceMonitoringNotificationChannelRead, Update: resourceMonitoringNotificationChannelUpdate, Delete: resourceMonitoringNotificationChannelDelete, Importer: &schema.ResourceImporter{ State: resourceMonitoringNotificationChannelImport, }, Timeouts: &schema.ResourceTimeout{ Create: schema.DefaultTimeout(240 * time.Second), Update: schema.DefaultTimeout(240 * time.Second), Delete: schema.DefaultTimeout(240 * time.Second), }, Schema: map[string]*schema.Schema{ "display_name": { Type: schema.TypeString, Required: true, }, "type": { Type: schema.TypeString, Required: true, }, "description": { Type: schema.TypeString, Optional: true, }, "enabled": { Type: schema.TypeBool, Optional: true, Default: true, }, "labels": { Type: schema.TypeMap, Optional: true, Elem: &schema.Schema{Type: schema.TypeString}, }, "user_labels": { Type: schema.TypeMap, Optional: true, Elem: &schema.Schema{Type: schema.TypeString}, }, "name": { Type: schema.TypeString, Computed: true, }, "verification_status": { Type: schema.TypeString, Computed: true, }, "project": { Type: schema.TypeString, Optional: true, Computed: true, ForceNew: true, }, }, } } func resourceMonitoringNotificationChannelCreate(d *schema.ResourceData, meta interface{}) error { config := meta.(*Config) obj := make(map[string]interface{}) labelsProp, err := expandMonitoringNotificationChannelLabels(d.Get("labels"), d, config) if err != nil { return err } else if v, ok := d.GetOkExists("labels"); !isEmptyValue(reflect.ValueOf(labelsProp)) && (ok || !reflect.DeepEqual(v, labelsProp)) { obj["labels"] = labelsProp } typeProp, err := expandMonitoringNotificationChannelType(d.Get("type"), d, config) if err != nil { return err } else if v, ok := d.GetOkExists("type"); !isEmptyValue(reflect.ValueOf(typeProp)) && (ok || !reflect.DeepEqual(v, typeProp)) { obj["type"] = typeProp } userLabelsProp, err := expandMonitoringNotificationChannelUserLabels(d.Get("user_labels"), d, config) if err != nil { return err } else if v, ok := d.GetOkExists("user_labels"); !isEmptyValue(reflect.ValueOf(userLabelsProp)) && (ok || !reflect.DeepEqual(v, userLabelsProp)) { obj["userLabels"] = userLabelsProp } descriptionProp, err := expandMonitoringNotificationChannelDescription(d.Get("description"), d, config) if err != nil { return err } else if v, ok := d.GetOkExists("description"); !isEmptyValue(reflect.ValueOf(descriptionProp)) && (ok || !reflect.DeepEqual(v, descriptionProp)) { obj["description"] = descriptionProp } displayNameProp, err := expandMonitoringNotificationChannelDisplayName(d.Get("display_name"), d, config) if err != nil { return err } else if v, ok := d.GetOkExists("display_name"); !isEmptyValue(reflect.ValueOf(displayNameProp)) && (ok || !reflect.DeepEqual(v, displayNameProp)) { obj["displayName"] = displayNameProp } enabledProp, err := expandMonitoringNotificationChannelEnabled(d.Get("enabled"), d, config) if err != nil { return err } else if v, ok := d.GetOkExists("enabled"); !isEmptyValue(reflect.ValueOf(enabledProp)) && (ok || !reflect.DeepEqual(v, enabledProp)) { obj["enabled"] = enabledProp } lockName, err := replaceVars(d, config, "stackdriver/notifications/{{project}}") if err != nil { return err } mutexKV.Lock(lockName) defer mutexKV.Unlock(lockName) url, err := replaceVars(d, config, "https://monitoring.googleapis.com/v3/projects/{{project}}/notificationChannels") if err != nil { return err } log.Printf("[DEBUG] Creating new NotificationChannel: %#v", obj) res, err := sendRequestWithTimeout(config, "POST", url, obj, d.Timeout(schema.TimeoutCreate)) if err != nil { return fmt.Errorf("Error creating NotificationChannel: %s", err) } // Store the ID now id, err := replaceVars(d, config, "{{name}}") if err != nil { return fmt.Errorf("Error constructing id: %s", err) } d.SetId(id) log.Printf("[DEBUG] Finished creating NotificationChannel %q: %#v", d.Id(), res) // `name` is autogenerated from the api so needs to be set post-create name, ok := res["name"] if !ok { return fmt.Errorf("Create response didn't contain critical fields. Create may not have succeeded.") } d.Set("name", name.(string)) d.SetId(name.(string)) return resourceMonitoringNotificationChannelRead(d, meta) } func resourceMonitoringNotificationChannelRead(d *schema.ResourceData, meta interface{}) error { config := meta.(*Config) url, err := replaceVars(d, config, "https://monitoring.googleapis.com/v3/{{name}}") if err != nil { return err } res, err := sendRequest(config, "GET", url, nil) if err != nil { return handleNotFoundError(err, d, fmt.Sprintf("MonitoringNotificationChannel %q", d.Id())) } project, err := getProject(d, config) if err != nil { return err } if err := d.Set("project", project); err != nil { return fmt.Errorf("Error reading NotificationChannel: %s", err) } if err := d.Set("labels", flattenMonitoringNotificationChannelLabels(res["labels"], d)); err != nil { return fmt.Errorf("Error reading NotificationChannel: %s", err) } if err := d.Set("name", flattenMonitoringNotificationChannelName(res["name"], d)); err != nil { return fmt.Errorf("Error reading NotificationChannel: %s", err) } if err := d.Set("verification_status", flattenMonitoringNotificationChannelVerificationStatus(res["verificationStatus"], d)); err != nil { return fmt.Errorf("Error reading NotificationChannel: %s", err) } if err := d.Set("type", flattenMonitoringNotificationChannelType(res["type"], d)); err != nil { return fmt.Errorf("Error reading NotificationChannel: %s", err) } if err := d.Set("user_labels", flattenMonitoringNotificationChannelUserLabels(res["userLabels"], d)); err != nil { return fmt.Errorf("Error reading NotificationChannel: %s", err) } if err := d.Set("description", flattenMonitoringNotificationChannelDescription(res["description"], d)); err != nil { return fmt.Errorf("Error reading NotificationChannel: %s", err) } if err := d.Set("display_name", flattenMonitoringNotificationChannelDisplayName(res["displayName"], d)); err != nil { return fmt.Errorf("Error reading NotificationChannel: %s", err) } if err := d.Set("enabled", flattenMonitoringNotificationChannelEnabled(res["enabled"], d)); err != nil { return fmt.Errorf("Error reading NotificationChannel: %s", err) } return nil } func resourceMonitoringNotificationChannelUpdate(d *schema.ResourceData, meta interface{}) error { config := meta.(*Config) obj := make(map[string]interface{}) labelsProp, err := expandMonitoringNotificationChannelLabels(d.Get("labels"), d, config) if err != nil { return err } else if v, ok := d.GetOkExists("labels"); !isEmptyValue(reflect.ValueOf(v)) && (ok || !reflect.DeepEqual(v, labelsProp)) { obj["labels"] = labelsProp } typeProp, err := expandMonitoringNotificationChannelType(d.Get("type"), d, config) if err != nil { return err } else if v, ok := d.GetOkExists("type"); !isEmptyValue(reflect.ValueOf(v)) && (ok || !reflect.DeepEqual(v, typeProp)) { obj["type"] = typeProp } userLabelsProp, err := expandMonitoringNotificationChannelUserLabels(d.Get("user_labels"), d, config) if err != nil { return err } else if v, ok := d.GetOkExists("user_labels"); !isEmptyValue(reflect.ValueOf(v)) && (ok || !reflect.DeepEqual(v, userLabelsProp)) { obj["userLabels"] = userLabelsProp } descriptionProp, err := expandMonitoringNotificationChannelDescription(d.Get("description"), d, config) if err != nil { return err } else if v, ok := d.GetOkExists("description"); !isEmptyValue(reflect.ValueOf(v)) && (ok || !reflect.DeepEqual(v, descriptionProp)) { obj["description"] = descriptionProp } displayNameProp, err := expandMonitoringNotificationChannelDisplayName(d.Get("display_name"), d, config) if err != nil { return err } else if v, ok := d.GetOkExists("display_name"); !isEmptyValue(reflect.ValueOf(v)) && (ok || !reflect.DeepEqual(v, displayNameProp)) { obj["displayName"] = displayNameProp } enabledProp, err := expandMonitoringNotificationChannelEnabled(d.Get("enabled"), d, config) if err != nil { return err } else if v, ok := d.GetOkExists("enabled"); !isEmptyValue(reflect.ValueOf(v)) && (ok || !reflect.DeepEqual(v, enabledProp)) { obj["enabled"] = enabledProp } lockName, err := replaceVars(d, config, "stackdriver/notifications/{{project}}") if err != nil { return err } mutexKV.Lock(lockName) defer mutexKV.Unlock(lockName) url, err := replaceVars(d, config, "https://monitoring.googleapis.com/v3/{{name}}") if err != nil { return err } log.Printf("[DEBUG] Updating NotificationChannel %q: %#v", d.Id(), obj) _, err = sendRequestWithTimeout(config, "PATCH", url, obj, d.Timeout(schema.TimeoutUpdate)) if err != nil { return fmt.Errorf("Error updating NotificationChannel %q: %s", d.Id(), err) } return resourceMonitoringNotificationChannelRead(d, meta) } func resourceMonitoringNotificationChannelDelete(d *schema.ResourceData, meta interface{}) error { config := meta.(*Config) lockName, err := replaceVars(d, config, "stackdriver/notifications/{{project}}") if err != nil { return err } mutexKV.Lock(lockName) defer mutexKV.Unlock(lockName) url, err := replaceVars(d, config, "https://monitoring.googleapis.com/v3/{{name}}") if err != nil { return err } var obj map[string]interface{} log.Printf("[DEBUG] Deleting NotificationChannel %q", d.Id()) res, err := sendRequestWithTimeout(config, "DELETE", url, obj, d.Timeout(schema.TimeoutDelete)) if err != nil { return handleNotFoundError(err, d, "NotificationChannel") } log.Printf("[DEBUG] Finished deleting NotificationChannel %q: %#v", d.Id(), res) return nil } func resourceMonitoringNotificationChannelImport(d *schema.ResourceData, meta interface{}) ([]*schema.ResourceData, error) { config := meta.(*Config) // current import_formats can't import fields with forward slashes in their value if err := parseImportId([]string{"(?P.+)"}, d, config); err != nil { return nil, err } return []*schema.ResourceData{d}, nil } // Some labels are obfuscated for monitoring channels // e.g. if the value is "SECRET", the server will return "**CRET" // This method checks to see if the value read from the server looks like // the obfuscated version of the state value. If so, it will just use the state // value to avoid permadiff. func flattenMonitoringNotificationChannelLabels(v interface{}, d *schema.ResourceData) interface{} { if v == nil { return v } readLabels := v.(map[string]interface{}) stateLabelsRaw, ok := d.GetOk("labels") if !ok { return v } stateLabels := stateLabelsRaw.(map[string]interface{}) for k, serverV := range readLabels { stateV, ok := stateLabels[k] if !ok { continue } useStateV := isMonitoringNotificationChannelLabelsObfuscated(serverV.(string), stateV.(string)) if useStateV { readLabels[k] = stateV.(string) } } return readLabels } func isMonitoringNotificationChannelLabelsObfuscated(serverLabel, stateLabel string) bool { if stateLabel == serverLabel { return false } if len(stateLabel) != len(serverLabel) { return false } // Check if value read from GCP has either the same character or replaced // it with '*'. for i := 0; i < len(stateLabel); i++ { if serverLabel[i] != '*' && stateLabel[i] != serverLabel[i] { return false } } return true } func flattenMonitoringNotificationChannelName(v interface{}, d *schema.ResourceData) interface{} { return v } func flattenMonitoringNotificationChannelVerificationStatus(v interface{}, d *schema.ResourceData) interface{} { return v } func flattenMonitoringNotificationChannelType(v interface{}, d *schema.ResourceData) interface{} { return v } func flattenMonitoringNotificationChannelUserLabels(v interface{}, d *schema.ResourceData) interface{} { return v } func flattenMonitoringNotificationChannelDescription(v interface{}, d *schema.ResourceData) interface{} { return v } func flattenMonitoringNotificationChannelDisplayName(v interface{}, d *schema.ResourceData) interface{} { return v } func flattenMonitoringNotificationChannelEnabled(v interface{}, d *schema.ResourceData) interface{} { return v } func expandMonitoringNotificationChannelLabels(v interface{}, d TerraformResourceData, config *Config) (map[string]string, error) { if v == nil { return map[string]string{}, nil } m := make(map[string]string) for k, val := range v.(map[string]interface{}) { m[k] = val.(string) } return m, nil } func expandMonitoringNotificationChannelType(v interface{}, d TerraformResourceData, config *Config) (interface{}, error) { return v, nil } func expandMonitoringNotificationChannelUserLabels(v interface{}, d TerraformResourceData, config *Config) (map[string]string, error) { if v == nil { return map[string]string{}, nil } m := make(map[string]string) for k, val := range v.(map[string]interface{}) { m[k] = val.(string) } return m, nil } func expandMonitoringNotificationChannelDescription(v interface{}, d TerraformResourceData, config *Config) (interface{}, error) { return v, nil } func expandMonitoringNotificationChannelDisplayName(v interface{}, d TerraformResourceData, config *Config) (interface{}, error) { return v, nil } func expandMonitoringNotificationChannelEnabled(v interface{}, d TerraformResourceData, config *Config) (interface{}, error) { return v, nil }