Skip to content

Commit 36dc7f8

Browse files
authored
Merge branch 'master' into INVS-1400_CSE_inventory_entity_group_enforce_validation
2 parents 64d0d6d + c80ebd2 commit 36dc7f8

File tree

7 files changed

+1816
-3
lines changed

7 files changed

+1816
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
## 2.22.2 (Unreleased)
1+
## 2.23.0 (Unreleased)
2+
FEATURES:
3+
* **New Resource:** sumologic_log_search (GH-432)
24
BUG FIXES:
35
* Enforce validation of `inventory_type` for sumologic_cse_inventory_entity_group_configuration ( fix documentation too ) (GH-521)
46

sumologic/provider.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ func Provider() terraform.ResourceProvider {
108108
"sumologic_hierarchy": resourceSumologicHierarchy(),
109109
"sumologic_content_permission": resourceSumologicPermissions(),
110110
"sumologic_local_file_source": resourceSumologicLocalFileSource(),
111+
"sumologic_log_search": resourceSumologicLogSearch(),
111112
},
112113
DataSourcesMap: map[string]*schema.Resource{
113114
"sumologic_cse_log_mapping_vendor_product": dataSourceCSELogMappingVendorAndProduct(),

sumologic/resource_sumologic_connection_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ resource "sumologic_connection" "serviceNowTest" {
209209
description = "%s"
210210
url = "%s"
211211
headers = {
212-
"Authorization": "Basic SOMERANDOMAUTHSTRING"
212+
"Authorization": "********"
213213
}
214214
webhook_type = "ServiceNow"
215215
connection_subtype = "%s"
@@ -227,7 +227,7 @@ resource "sumologic_connection" "serviceNowTest" {
227227
description = "%s"
228228
url = "%s"
229229
headers = {
230-
"Authorization": "Basic SOMERANDOMAUTHSTRING"
230+
"Authorization": "********"
231231
}
232232
webhook_type = "ServiceNow"
233233
connection_subtype = "%s"

0 commit comments

Comments
 (0)