generated from terraform-ibm-modules/terraform-ibm-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Add Event routing account settings variation #48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
aa0a7aa
Add Event routing account settings DA
c035e88
update variables.tf
75749be
Updated permissions,description,diagram
0de1b3a
Merge branch 'main' into account-routing
arya-girish-k bdbd83d
Addressed Review Comments
80534db
fix: Update name
a64925b
fix: Update provider version
b852656
Added some files
043c06a
Addressed review comments
fe20a45
update catalog
3168e77
Merge branch 'main' into account-routing
arya-girish-k 8ddb8a8
update catalog
767b2a1
Merge branch 'main' into account-routing
arya-girish-k a46ff55
Merge branch 'main' into account-routing
arya-girish-k c4d711f
Hardcoded region
cee2482
Update ibm_catalog.json
arya-girish-k 398d97c
Addressed Review Comments
812cb3c
Updated catalog
b11f762
update test
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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
4 changes: 4 additions & 0 deletions
4
reference-architecture/deployable-architecture-account-settings.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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,3 @@ | ||
| # Cloud automation for Cloud Monitoring (Event Routing Account Settings) | ||
|
|
||
| :exclamation: **Important:** This solution is not intended to be called by other modules because it contains a provider configuration and is not compatible with the `for_each`, `count`, and `depends_on` arguments. For more information, see [Providers Within Modules](https://developer.hashicorp.com/terraform/language/modules/develop/providers). |
3 changes: 3 additions & 0 deletions
3
solutions/event-routing-account-settings/catalogValidationValues.json.template
This file contains hidden or 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,3 @@ | ||
| { | ||
| "ibmcloud_api_key": $VALIDATION_APIKEY" | ||
| } | ||
This file contains hidden or 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,15 @@ | ||
| ####################################################################################################################### | ||
| # IBM Cloud Activity Tracker Event Routing | ||
| ####################################################################################################################### | ||
|
|
||
| module "account_routing_settings" { | ||
| source = "../.." | ||
|
|
||
| global_event_routing_settings = { | ||
| default_targets = var.default_targets | ||
| metadata_region_primary = var.primary_metadata_region | ||
| metadata_region_backup = var.backup_metadata_region | ||
| permitted_target_regions = var.permitted_target_regions | ||
| private_api_endpoint_only = var.private_api_endpoint_only | ||
| } | ||
| } |
This file contains hidden or 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,3 @@ | ||
| ############################################################################## | ||
| # Outputs | ||
| ############################################################################## |
This file contains hidden or 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,4 @@ | ||
| provider "ibm" { | ||
| ibmcloud_api_key = var.ibmcloud_api_key | ||
| visibility = var.provider_visibility | ||
| } |
This file contains hidden or 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,57 @@ | ||
| ######################################################################################################################## | ||
| # Common variables | ||
| ######################################################################################################################## | ||
|
|
||
| variable "ibmcloud_api_key" { | ||
| type = string | ||
| description = "The IBM Cloud API key with access to configure Activity Tracker Event Routing account settings." | ||
| sensitive = true | ||
| } | ||
|
|
||
| variable "provider_visibility" { | ||
| description = "Set the visibility value for the IBM terraform provider. Supported values are `public`, `private`, `public-and-private`. [Learn more](https://registry.terraform.io/providers/IBM-Cloud/ibm/latest/docs/guides/custom-service-endpoints)." | ||
| type = string | ||
| default = "public" | ||
|
|
||
| validation { | ||
| condition = contains(["public", "private", "public-and-private"], var.provider_visibility) | ||
| error_message = "Invalid visibility option. Allowed values are 'public', 'private', or 'public-and-private'." | ||
| } | ||
| } | ||
| ######################################################################################################################## | ||
| # IBM Cloud Activity Tracker Event Routing | ||
| ######################################################################################################################## | ||
|
|
||
| variable "default_targets" { | ||
| description = "Where activity events that are not explicitly managed in the account's routing rules are routed. You can define up to 2 default targets per account. Consider defining a second default target when you want to collect the data in a backup location." | ||
| type = list(string) | ||
| default = [] | ||
| } | ||
|
|
||
| variable "primary_metadata_region" { | ||
| description = "Storage location for target, route, and settings metadata in your IBM Cloud account. To store all configuration metadata in a single region, set this value explicitly." | ||
| type = string | ||
| default = "us-south" | ||
| } | ||
|
|
||
| variable "backup_metadata_region" { | ||
| description = "You can also configure a backup location where the metadata is stored for recovery purposes. The `backup_metadata_region` can't be the same as `primary_metadata_region`." | ||
| type = string | ||
| default = null | ||
arya-girish-k marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| validation { | ||
| error_message = "`metadata_region_backup` cannot be the same as `metadata_region_primary`." | ||
| condition = var.backup_metadata_region == null || var.primary_metadata_region != var.backup_metadata_region | ||
| } | ||
| } | ||
|
|
||
| variable "permitted_target_regions" { | ||
| description = "Control where targets collecting audit events can be located. To allow targets in any region (i.e., No restrictions), configure this field as an empty list `[]`." | ||
| type = list(string) | ||
| default = [] | ||
| } | ||
|
|
||
| variable "private_api_endpoint_only" { | ||
| description = "Public endpoints can be disabled for managing Activity Tracker Event Routing configuration via the CLI or REST API. When public endpoints are disabled, the Activity Tracker Event Routing UI will be inaccessible." | ||
| type = bool | ||
| default = false | ||
| } | ||
This file contains hidden or 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,10 @@ | ||
| terraform { | ||
| required_version = ">= 1.9.0" | ||
| required_providers { | ||
| # Lock DA into an exact provider version - renovate automation will keep it updated | ||
| ibm = { | ||
| source = "ibm-cloud/ibm" | ||
| version = "1.80.4" | ||
| } | ||
| } | ||
| } |
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
missed this typo - fixed in #60