Setting up configurations for the Alert Notification service instance

######################### Alert Notification Sercice Instance ############################

# Get plan for alert-notification service
data "btp_subaccount_service_plan" "by_name" {
  subaccount_id = btp_subaccount.DevACloudGuruji.id
  name          = "standard"
  offering_name = "alert-notification"
}

resource "btp_subaccount_service_instance" "alert_notification_ACG" {
  subaccount_id = btp_subaccount.DevACloudGuruji.id
  serviceplan_id = data.btp_subaccount_service_plan.by_name.id
  name           = "DevACloudGuruji-alert-notification"
}

Last updated