Skip to content

Commit 2ef318d

Browse files
authored
Enable HTTP Sink with aws sigv4 auth mode only (#6747)
* Enable HTTP Sink with aws sigv4 auth mode only Signed-off-by: Kondaka <krishkdk@amazon.com> * Addressed review comments Signed-off-by: Kondaka <krishkdk@amazon.com> * Addressed review comments Signed-off-by: Kondaka <krishkdk@amazon.com> --------- Signed-off-by: Kondaka <krishkdk@amazon.com>
1 parent 8a14fd7 commit 2ef318d

File tree

53 files changed

+1776
-2694
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+1776
-2694
lines changed

data-prepper-plugins/http-sink/build.gradle

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ dependencies {
2828
implementation project(':data-prepper-plugins:parse-json-processor')
2929
implementation 'software.amazon.awssdk:sts'
3030
testImplementation project(':data-prepper-test:test-common')
31+
testImplementation project(':data-prepper-test:test-event')
32+
testImplementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310'
3133
}
3234

3335
test {
@@ -57,11 +59,10 @@ task integrationTest(type: Test) {
5759
useJUnitPlatform()
5860

5961
classpath = sourceSets.integrationTest.runtimeClasspath
60-
systemProperty 'tests.http.sink.http.endpoint', System.getProperty('tests.http.sink.http.endpoint')
61-
systemProperty 'tests.http.sink.region', System.getProperty('tests.http.sink.region')
62-
systemProperty 'tests.http.sink.bucket', System.getProperty('tests.http.sink.bucket')
62+
systemProperty 'tests.aws.region', System.getProperty('tests.aws.region')
63+
systemProperty 'tests.aws.role', System.getProperty('tests.aws.role')
6364

6465
filter {
6566
includeTestsMatching '*IT'
6667
}
67-
}
68+
}

0 commit comments

Comments
 (0)