Skip to content

Commit

Permalink
Merge pull request #83 from Keyfactor/sqlmerge
Browse files Browse the repository at this point in the history
Sqlmerge
  • Loading branch information
bhillkeyfactor authored Aug 29, 2023
2 parents 932ff7c + 33042fa commit a32a06b
Show file tree
Hide file tree
Showing 2 changed files with 90 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2.3.0
* Added support for SQL Server Bindings

2.2.1
* Fixed issue where https binding without cert was causing an error

Expand Down
88 changes: 87 additions & 1 deletion integration-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -319,8 +319,94 @@
"PowerShell": false,
"BlueprintAllowed": false,
"CustomAliasAllowed": "Forbidden"
},
{
"Name": "WinSql",
"ShortName": "WinSql",
"Capability": "WinSql",
"LocalStore": false,
"SupportedOperations": {
"Add": true,
"Create": false,
"Discovery": false,
"Enrollment": false,
"Remove": true
},
"Properties": [
{
"Name": "WinRm Protocol",
"DisplayName": "WinRm Protocol",
"Type": "MultipleChoice",
"DependsOn": null,
"DefaultValue": "https,http",
"Required": true
},
{
"Name": "WinRm Port",
"DisplayName": "WinRm Port",
"Type": "String",
"DependsOn": null,
"DefaultValue": "5986",
"Required": true
},
{
"Name": "ServerUsername",
"DisplayName": "Server Username",
"Type": "Secret",
"DependsOn": null,
"DefaultValue": null,
"Required": false
},
{
"Name": "ServerPassword",
"DisplayName": "Server Password",
"Type": "Secret",
"DependsOn": null,
"DefaultValue": null,
"Required": false
},
{
"Name": "ServerUseSsl",
"DisplayName": "Use SSL",
"Type": "Bool",
"DependsOn": null,
"DefaultValue": "true",
"Required": true
},
{
"Name": "RestartService",
"DisplayName": "Restart SQL Service After Cert Installed",
"Type": "Bool",
"DependsOn": null,
"DefaultValue": "false",
"Required": true
}
],
"EntryParameters": [
{
"Name": "InstanceName",
"DisplayName": "Instance Name",
"Type": "String",
"RequiredWhen": {
"HasPrivateKey": false,
"OnAdd": false,
"OnRemove": false,
"OnReenrollment": false
}
}
],
"PasswordOptions": {
"EntrySupported": false,
"StoreRequired": false,
"Style": "Default"
},
"StorePathValue": "My",
"PrivateKeyAllowed": "Optional",
"ServerRequired": true,
"PowerShell": false,
"BlueprintAllowed": true
}
]
}
}
}
}

0 comments on commit a32a06b

Please sign in to comment.