Skip to content

Commit

Permalink
Merge pull request #5 from omers/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
omers authored Jul 3, 2023
2 parents 74bb50f + 63f1b94 commit 32c11f9
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
terraform.tfstate*
.terraform
.terragrunt-cache
.terraform.lock.hcl
.terraform.lock.hcl
.idea/
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ No modules.
| <a name="input_environment"></a> [environment](#input\_environment) | The account environment (Prod / Dev etc.) | `string` | n/a | yes |
| <a name="input_raise_amount_percent"></a> [raise\_amount\_percent](#input\_raise\_amount\_percent) | An Expression object used to specify the anomalies that you want to generate alerts for. The precentage service cost increase than the expected | `string` | n/a | yes |
| <a name="input_region"></a> [region](#input\_region) | AWS Region | `string` | n/a | yes |
| <a name="input_resource_tags"></a> [resource\_tags](#input\_resource\_tags) | Tags to set for all resources | `map(string)` | `{}` | no |

## Outputs

No outputs.
No outputs.
5 changes: 1 addition & 4 deletions provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ terraform {
provider "aws" {
region = var.region
default_tags {
tags = {
Environment = var.environment
Owner = "Ops"
}
tags = var.resource_tags
}
}
6 changes: 6 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,10 @@ variable "emails" {
variable "raise_amount_percent" {
type = string
description = "An Expression object used to specify the anomalies that you want to generate alerts for. The precentage service cost increase than the expected"
}

variable "resource_tags" {
description = "Tags to set for all resources"
type = map(string)
default = {}
}

0 comments on commit 32c11f9

Please sign in to comment.