Maintains support for loading old Driver config.json that use the singular `SecurityGroupName` field, but also adds a new plural `SecurityGroupNames` field. This change also bumps to latest stretchr/testify, in the course of adding a dep on stretchr/testify/mock to help test the modified `configureSecurityGroups` code. The unused `deleteSecurityGroup` is dropped as well. Signed-off-by: John Sirois <john.sirois@gmail.com> Signed-off-by: Bill Farner <terasurfer@gmail.com>
14 lines
325 B
Go
14 lines
325 B
Go
package objx
|
|
|
|
const (
|
|
// PathSeparator is the character used to separate the elements
|
|
// of the keypath.
|
|
//
|
|
// For example, `location.address.city`
|
|
PathSeparator string = "."
|
|
|
|
// SignatureSeparator is the character that is used to
|
|
// separate the Base64 string from the security signature.
|
|
SignatureSeparator = "_"
|
|
)
|