Posts

Showing posts from April, 2022

Terraform -- Notification service

+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++  # This resource provides the Notification Topic resource in Oracle Cloud Infrastructure Notifications service. resource "oci_ons_notification_topic" "test_notification_topic" {     #Required     compartment_id = var.compartment_id     name = var.notification_topic_name     #Optional     #defined_tags = {"Operations.CostCenter"= "42"}     description = var.notification_topic_description     freeform_tags = {"Department"= var.compartment_name} } # This resource provides the Subscription resource in Oracle Cloud Infrastructure Notifications service. resource "oci_ons_subscription" "test_subscription" {     #Required     compartment_id = var.compartment_id     endpoint = var.subscription_endpoint     protocol = var.subscription...