Skip to content

Commit f5e0c95

Browse files
authored
Merge pull request #23 from SumoLogic/sam-version-update
Sam version update
2 parents 7d43110 + db5b2af commit f5e0c95

File tree

5 files changed

+15
-3
lines changed

5 files changed

+15
-3
lines changed

aws/cloudwatchlogsforwarder/cloudwatchlogsforwarder.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ resource "aws_serverlessapplicationrepository_cloudformation_stack" "auto_enable
190190

191191
name = "Auto-Enable-Logs-Subscription-${random_string.aws_random.id}"
192192
application_id = "arn:aws:serverlessrepo:us-east-1:956882708938:applications/sumologic-loggroup-connector"
193-
semantic_version = "1.0.6"
193+
semantic_version = var.app_semantic_version
194194
capabilities = data.aws_serverlessapplicationrepository_application.app.required_capabilities
195195
parameters = {
196196
DestinationArnType = "Lambda"

aws/cloudwatchlogsforwarder/variables.tf

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,12 @@ variable "source_details" {
7575
}
7676
}
7777

78+
variable "app_semantic_version" {
79+
type = string
80+
description = "Provide the latest version of Serverless Application Repository 'sumologic-loggroup-connector'."
81+
default = "1.0.7"
82+
}
83+
7884
variable "auto_enable_logs_subscription" {
7985
type = string
8086
description = <<EOT

aws/elasticloadbalancing/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ variable "auto_enable_access_logs" {
111111
variable "app_semantic_version" {
112112
type = string
113113
description = "Provide the latest version of Serverless Application Repository 'sumologic-s3-logging-auto-enable'."
114-
default = "1.0.4"
114+
default = "1.0.5"
115115
}
116116

117117
variable "auto_enable_access_logs_options" {

aws/elb/elb.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ resource "aws_serverlessapplicationrepository_cloudformation_stack" "auto_enable
139139

140140
name = "Auto-Enable-Access-Logs-Elb-${random_string.aws_random.id}"
141141
application_id = "arn:aws:serverlessrepo:us-east-1:956882708938:applications/sumologic-s3-logging-auto-enable"
142-
semantic_version = "1.0.2"
142+
semantic_version = var.app_semantic_version
143143
capabilities = data.aws_serverlessapplicationrepository_application.app.required_capabilities
144144
parameters = {
145145
BucketName = local.bucket_name

aws/elb/variables.tf

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,12 @@ variable "sumologic_organization_id" {
8989
}
9090
}
9191

92+
variable "app_semantic_version" {
93+
type = string
94+
description = "Provide the latest version of Serverless Application Repository 'sumologic-s3-logging-auto-enable'."
95+
default = "1.0.5"
96+
}
97+
9298
variable "auto_enable_access_logs" {
9399
type = string
94100
description = <<EOT

0 commit comments

Comments
 (0)