-
Notifications
You must be signed in to change notification settings - Fork 709
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed eventgrid_system_topic location
Fixed azurerm_eventgrid_system_topic_event_subscription Added example eventgrid_system_event_subscription Merge combined_objects_function_apps (module.function_apps and module.windows_function_apps)
- Loading branch information
1 parent
d1c6e09
commit 94d0554
Showing
4 changed files
with
107 additions
and
45 deletions.
There are no files selected for viewing
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
58 changes: 58 additions & 0 deletions
58
...s/messaging/eventgrid/400-simple-eventgrid-system-event-subscription/configuration.tfvars
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
global_settings = { | ||
default_region = "region1" | ||
regions = { | ||
region1 = "southeastasia" | ||
} | ||
} | ||
|
||
resource_groups = { | ||
evg_examples = { | ||
name = "eventgrid" | ||
region = "region1" | ||
} | ||
} | ||
|
||
eventgrid_system_topic = { | ||
egt1 = { | ||
name = "egt1" | ||
region = "global" # set global when topic_type = "Microsoft.Resources.Subscriptions" | ||
resource_group = { | ||
key = "evg_examples" | ||
} | ||
topic_type = "Microsoft.Resources.Subscriptions" | ||
source_resource_id = "/subscriptions/0b1f6471-1bf0-4dda-aec3-111122223333" | ||
} | ||
} | ||
|
||
## Uncomment this part after deployed function on Azure Function | ||
# eventgrid_system_event_subscription = { | ||
# egs1 = { | ||
# name = "egs1" | ||
# resource_group = { | ||
# key = "evg_examples" | ||
# } | ||
# eventgrid_system_topic = { | ||
# key = "egt1" | ||
# } | ||
# event_delivery_schema = "EventGridSchema" | ||
# included_event_types = ["Microsoft.Resources.ResourceWriteSuccess"] | ||
# azure_function_endpoint = { | ||
# function_name = "FunctionName" #Set function name after deployed it | ||
# function_app = { | ||
# key = "evg_examples" | ||
# } | ||
# } | ||
# advanced_filtering_on_arrays_enabled = true | ||
# advanced_filters = { | ||
# string_not_in = [ | ||
# { | ||
# key = "data.operationName" | ||
# value = ["Microsoft.Resources/tags/write"] | ||
# } | ||
# ] | ||
# } | ||
# } | ||
# } | ||
|
||
|
||
|
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
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