-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #88 from axiomhq/fix/misc-fixes
Style suggestions
- Loading branch information
Showing
15 changed files
with
149 additions
and
241 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
.terraform.lock.hcl |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,34 @@ | ||
variable "axiom_dataset" { | ||
variable "prefix" { | ||
type = string | ||
description = "Axiom dataset to forward logs to" | ||
description = "Prefix for resources, defaults to axiom-cloudwatch" | ||
default = "axiom-cloudwatch" | ||
} | ||
|
||
variable "axiom_token" { | ||
variable "lambda_zip_bucket" { | ||
type = string | ||
description = "Axiom token for the dataset" | ||
description = "Name of the S3 bucket where Lambda code is stored" | ||
default = "axiom-cloudformation" | ||
} | ||
|
||
variable "axiom_url" { | ||
variable "lambda_zip_version" { | ||
type = string | ||
description = "Axiom's API URL" | ||
default = "https://api.axiom.co" | ||
description = "Version of the Axiom Lambda" | ||
default = "1.2.0" | ||
} | ||
|
||
variable "prefix" { | ||
variable "axiom_dataset" { | ||
type = string | ||
default = "axiom-cloudwatch" | ||
description = "prefix for resources, defaults to axiom-cloudwatch" | ||
description = "Axiom dataset to forward logs to" | ||
} | ||
|
||
variable "forwarder_bucket" { | ||
variable "axiom_token" { | ||
type = string | ||
default = "axiom-cloudformation" | ||
description = "name of the S3 bucket where Forwarder Lambda code is stored" | ||
description = "Axiom token for the dataset" | ||
} | ||
|
||
variable "forwarder_version" { | ||
variable "axiom_url" { | ||
type = string | ||
default = "1.2.0" | ||
description = "Version of the Axiom CloudWatch Forwarder Lambda" | ||
description = "Axiom's API URL" | ||
default = "https://api.axiom.co" | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
variable "prefix" { | ||
type = string | ||
default = "axiom-cloudwatch" | ||
description = "prefix for resources, defaults to axiom-cloudwatch" | ||
description = "Prefix for resources, defaults to axiom-cloudwatch" | ||
} | ||
|
||
variable "forwarder_lambda_arn" { | ||
variable "lambda_zip_bucket" { | ||
type = string | ||
description = "The ARN of the Lambda function that forwards logs to Axiom" | ||
description = "Name of the S3 bucket where Lambda code is stored" | ||
default = "axiom-cloudformation" | ||
} | ||
|
||
variable "log_groups_prefix" { | ||
variable "lambda_zip_version" { | ||
type = string | ||
description = "The prefix of the CloudWatch log groups that will trigger the Axiom CloudWatch Forwarder Lambda." | ||
default = "" | ||
description = "Version of the Axiom Lambda" | ||
default = "1.2.0" | ||
} | ||
|
||
variable "forwarder_bucket" { | ||
variable "forwarder_lambda_arn" { | ||
type = string | ||
default = "axiom-cloudformation" | ||
description = "name of the S3 bucket where Forwarder Lambda code is stored" | ||
description = "The ARN of the Lambda function that forwards logs to Axiom" | ||
} | ||
|
||
variable "forwarder_version" { | ||
variable "log_groups_prefix" { | ||
type = string | ||
default = "1.2.0" | ||
description = "Version of the Axiom CloudWatch Forwarder Lambda" | ||
description = "The prefix of the CloudWatch log groups that will trigger the Axiom CloudWatch Forwarder Lambda" | ||
default = "" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.