Skip to content

Commit

Permalink
Merge pull request #23 from SumoLogic/sam-version-update
Browse files Browse the repository at this point in the history
Sam version update
  • Loading branch information
himsharma01 authored Jul 4, 2023
2 parents 7d43110 + db5b2af commit f5e0c95
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 3 deletions.
2 changes: 1 addition & 1 deletion aws/cloudwatchlogsforwarder/cloudwatchlogsforwarder.tf
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ resource "aws_serverlessapplicationrepository_cloudformation_stack" "auto_enable

name = "Auto-Enable-Logs-Subscription-${random_string.aws_random.id}"
application_id = "arn:aws:serverlessrepo:us-east-1:956882708938:applications/sumologic-loggroup-connector"
semantic_version = "1.0.6"
semantic_version = var.app_semantic_version
capabilities = data.aws_serverlessapplicationrepository_application.app.required_capabilities
parameters = {
DestinationArnType = "Lambda"
Expand Down
6 changes: 6 additions & 0 deletions aws/cloudwatchlogsforwarder/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,12 @@ variable "source_details" {
}
}

variable "app_semantic_version" {
type = string
description = "Provide the latest version of Serverless Application Repository 'sumologic-loggroup-connector'."
default = "1.0.7"
}

variable "auto_enable_logs_subscription" {
type = string
description = <<EOT
Expand Down
2 changes: 1 addition & 1 deletion aws/elasticloadbalancing/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ variable "auto_enable_access_logs" {
variable "app_semantic_version" {
type = string
description = "Provide the latest version of Serverless Application Repository 'sumologic-s3-logging-auto-enable'."
default = "1.0.4"
default = "1.0.5"
}

variable "auto_enable_access_logs_options" {
Expand Down
2 changes: 1 addition & 1 deletion aws/elb/elb.tf
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ resource "aws_serverlessapplicationrepository_cloudformation_stack" "auto_enable

name = "Auto-Enable-Access-Logs-Elb-${random_string.aws_random.id}"
application_id = "arn:aws:serverlessrepo:us-east-1:956882708938:applications/sumologic-s3-logging-auto-enable"
semantic_version = "1.0.2"
semantic_version = var.app_semantic_version
capabilities = data.aws_serverlessapplicationrepository_application.app.required_capabilities
parameters = {
BucketName = local.bucket_name
Expand Down
6 changes: 6 additions & 0 deletions aws/elb/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,12 @@ variable "sumologic_organization_id" {
}
}

variable "app_semantic_version" {
type = string
description = "Provide the latest version of Serverless Application Repository 'sumologic-s3-logging-auto-enable'."
default = "1.0.5"
}

variable "auto_enable_access_logs" {
type = string
description = <<EOT
Expand Down

0 comments on commit f5e0c95

Please sign in to comment.