You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add prefix to atracker resource name (#131)<br>The AT event routing target and routes names were updated to add a prefix(if provided) for consistency with other resource. Also, the new targets and routes with prefix are created before the destroy of old ones which ensures the consumers does not lose event data. Additionally, updated the variable descriptions.
* fix: atracker resource name and variable descriptions
* SKIP Upgrade Test
---------
Co-authored-by: Md Anam Raihan <[email protected]>
Co-authored-by: Allen Dean <[email protected]>
description="The name of a new or existing resource group to provision resources to. If a prefix input variable is passed, it is prefixed to the value in the `<prefix>-value` format."
26
+
description="The name of a new or existing resource group to provision resources in."
27
27
}
28
28
29
29
variable"region" {
@@ -39,7 +39,7 @@ variable "region" {
39
39
40
40
variable"prefix" {
41
41
type=string
42
-
description="Optional. The prefix to append to all resources that this solution creates."
42
+
description="The prefix to add to all resources that this solution creates."
description="The name of the IBM Cloud Logging instance to create. If a prefix input variable is passed, it is prefixed to the value in the `<prefix>-value` format."
58
+
description="The name of the IBM Cloud Log Analysis instance to create. If a prefix input variable is specified, it's added to the value in the <prefix>-value format."
59
59
default="log-analysis"
60
60
}
61
61
62
62
variable"log_analysis_plan" {
63
63
type=string
64
-
description="The IBM Cloud Logging plan to provision. Available values are `7-day`, `14-day`, `30-day`, and `hipaa-30-day`."
64
+
description="The Log Analysis plan to provision. Possible values: `7-day`, `14-day`, `30-day`, and `hipaa-30-day`."
65
65
default="7-day"
66
66
67
67
validation {
@@ -71,7 +71,7 @@ variable "log_analysis_plan" {
71
71
}
72
72
73
73
variable"log_analysis_service_endpoints" {
74
-
description="The type of the service endpoint that will be set for the IBM Log Analysis instance."
74
+
description="The type of endpoint for the Log Analysis instance. Possible values: `public`, `private`, `public-and-private`."
description="Enable archive on log analysis instances"
91
+
description="Whether to enable archiving on Log Analysis instances."
92
92
default=true
93
93
}
94
94
95
95
variable"activity_tracker_enable_archive" {
96
96
type=bool
97
-
description="Enable archive on activity tracker instances"
97
+
description="Whether to enable archiving on Activity Tracker."
98
98
default=true
99
99
}
100
100
101
101
variable"log_archive_api_key" {
102
102
type=string
103
-
description="Optional. The API key to use to configure log analysis archiving with Cloud Object Storage. If no value is passed, the API key value that was passed in the `ibmcloud_api_key` variable is used."
103
+
description="The API key to use to configure archiving from Log Analysis to Object Storage. If not specified, the API key value in ibmcloud_api_key is used."
104
104
sensitive=true
105
105
default=null
106
106
}
107
107
108
108
variable"enable_platform_logs" {
109
109
type=bool
110
-
description="When set to `true`, the IBM Cloud Logging instance collects the platform log files."
0 commit comments