Skip to content

Commit ed3a504

Browse files
author
Steven Nemetz
committed
Remove budget name prefix
1 parent 2fafb3c commit ed3a504

File tree

7 files changed

+1
-7
lines changed

7 files changed

+1
-7
lines changed

examples/cost-account-annually/main.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
module "budgets" {
32
source = "../../"
43
budgets = "${var.budgets}"

examples/cost-account-annually/variables.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
variable "region" {
32
default = "us-west-2"
43
}

examples/cost-account-monthly/main.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
module "budgets" {
32
source = "../../"
43
budgets = "${var.budgets}"

examples/cost-account-monthly/variables.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
variable "region" {
32
default = "us-west-2"
43
}

examples/cost-account-quarterly/main.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
module "budgets" {
32
source = "../../"
43
budgets = "${var.budgets}"

examples/cost-account-quarterly/variables.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
variable "region" {
32
default = "us-west-2"
43
}

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ variable "service" {
66
// Specific to module
77
variable "budget_name_prefix" {
88
description = "Text to prefix budget names with"
9-
default = "Testing-"
9+
default = ""
1010
}
1111

1212
variable "budget_type" {

0 commit comments

Comments
 (0)