-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: AWS GovCloud Config integration #421
Conversation
Signed-off-by: Darren Murray <[email protected]>
Co-authored-by: Salim Afiune <[email protected]>
Co-authored-by: Salim Afiune <[email protected]>
Signed-off-by: Darren Murray <[email protected]>
Signed-off-by: Darren Murray <[email protected]>
Signed-off-by: Darren Murray <[email protected]>
…dCreds to pointers Signed-off-by: Darren Murray <[email protected]>
Signed-off-by: Darren Murray <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Signed-off-by: Darren Murray <[email protected]>
assert.Equal(t, 1, data.Enabled, "a new GCP integration should be enabled") | ||
assert.Equal(t, "integration_name", data.Name, "AWS integration name mismatch") | ||
assert.Equal(t, "AWS_CT_SQS", data.Type, "a new AWS integration should match its type") | ||
assert.Equal(t, 1, data.Enabled, "a new AWS integration should be enabled") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thank you!
cli/cmd/integration.go
Outdated
case "AWS GovCloud Config": | ||
return createAwsGovCloudConfigIntegration() | ||
case "AWS GovCloud CloudTrail": | ||
return createAwsGovCloudCTIntegration() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: If we change the Integration type, would be nice to change these functions too
return createAwsGovCloudCTIntegration() | |
return createAwsGovCloudCloudTrailIntegration() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Co-authored-by: Salim Afiune <[email protected]>
Co-authored-by: Salim Afiune <[email protected]>
Co-authored-by: Salim Afiune <[email protected]>
Signed-off-by: Darren Murray <[email protected]>
AWS Gov Cloud Config integration
Signed-off-by: Darren Murray [email protected]