Skip to content

Commit

Permalink
fix constant (yes, it must be like this, I swear)
Browse files Browse the repository at this point in the history
  • Loading branch information
majewsky committed Sep 24, 2024
1 parent 541d73e commit d70095a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
"u_data_center": "ROT 1, ROT 2, Walldorf 4",
"u_impacted_lobs": "Global Cloud Services",
"u_implementation_contact": "",
"u_lob_field_1": "Change not Security relevant",
"u_lob_field_1": "Change not Security relevant ",
"u_responsible_manager": "Max Mustermann (D001234)"
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
"u_data_center": "ROT 1, ROT 2, Walldorf 4",
"u_impacted_lobs": "Global Cloud Services",
"u_implementation_contact": "I012345",
"u_lob_field_1": "Change not Security relevant",
"u_lob_field_1": "Change not Security relevant ",
"u_responsible_manager": "John Doe (D123456)"
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
"u_data_center": "ROT 1",
"u_impacted_lobs": "Global Cloud Services",
"u_implementation_contact": "D012345",
"u_lob_field_1": "Change not Security relevant",
"u_lob_field_1": "Change not Security relevant ",
"u_responsible_manager": "Jane Doe (I1234567)"
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
"u_data_center": "ROT 1, ROT 2, Walldorf 4",
"u_impacted_lobs": "Global Cloud Services",
"u_implementation_contact": "I012345",
"u_lob_field_1": "Change not Security relevant",
"u_lob_field_1": "Change not Security relevant ",
"u_responsible_manager": "Max Mustermann (D001234)"
}
2 changes: 1 addition & 1 deletion internal/servicenow/change.go
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ func (chg Change) Serialize(cfg MappingConfiguration, ruleset MappingRuleset) ([
"short_description": chg.Summary,
// This field is required, but since we don't have a way to judge security-relevance of changes,
// we have been told to always report false. The truthy value would be "Change is Security relevant".
"u_lob_field_1": "Change not Security relevant",
"u_lob_field_1": "Change not Security relevant ",
}
if chg.ConfigurationItem != "" {
data["cmdb_ci"] = chg.ConfigurationItem
Expand Down

0 comments on commit d70095a

Please sign in to comment.