Skip to content

Add API for creating amazon_s3_configurations for audit event streaming

What does this MR do and why?

Add API for creating amazon_s3_configurations for audit event streaming

Screenshots or screen recordings

Screenshots are required for UI changes, and strongly recommended for all other merge requests.

Before After

How to set up and validate locally

Numbered steps to set up and validate the change are strongly suggested.

  1. Visit GraphiQL explorer https://gdk.test:3000/-/graphql-explorer
  2. Run the following mutation to create a new AuditEvents::AmazonS3Configuration
mutation createAmazonS3Configuration {
  amazonS3ConfigurationCreate(
    input: {groupPath: "twitter", awsRegion: "us-east-1", accessKeyXid: "AKIA1231dsdsdsdsds23", secretAccessKey: "TOPSECRET", bucketName: "TEST"}
  ) {
    amazonS3Configuration {
      id
      name
      accessKeyXid
      bucketName
      awsRegion
    }
    errors
  }
}
  1. Run the following in rails console and verify that a new record was created with correct attributes
AuditEvents::AmazonS3Configuration.last

MR acceptance checklist

This checklist encourages us to confirm any changes have been analyzed to reduce risks in quality, performance, reliability, security, and maintainability.

Relates to #423229 (closed)

Edited by Huzaifa Iftikhar

Merge request reports