Skip to content

Commit

Permalink
resource/aws_budgets_budget: Fix disappears test and add CHANGELOG for
Browse files Browse the repository at this point in the history
…#13139

Output from acceptance testing in AWS Commercial:

```
--- PASS: TestAccAWSBudgetsBudget_disappears (8.81s)
--- PASS: TestAccAWSBudgetsBudget_prefix (18.83s)
--- PASS: TestAccAWSBudgetsBudget_basic (22.27s)
--- PASS: TestAccAWSBudgetsBudget_notification (64.76s)
```

Output from acceptance testing in AWS GovCloud (US):

```
--- SKIP: TestAccAWSBudgetsBudget_basic (1.38s)
--- SKIP: TestAccAWSBudgetsBudget_prefix (1.38s)
--- SKIP: TestAccAWSBudgetsBudget_disappears (1.38s)
--- SKIP: TestAccAWSBudgetsBudget_notification (1.38s)
```
  • Loading branch information
bflad committed Feb 11, 2021
1 parent fe44198 commit 3ce9225
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .changelog/13139.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
```release-note:enhancement
resource/aws_budgets_budget: Add `arn` attribute
```

```release-note:enhancement
resource/aws_budgets_budget: Add plan time validation for `budget_type`, `time_unit`, and `subscriber_sns_topic_arns` arguments
```
2 changes: 1 addition & 1 deletion aws/resource_aws_budgets_budget_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ func TestAccAWSBudgetsBudget_disappears(t *testing.T) {
resourceName := "aws_budgets_budget.test"

resource.ParallelTest(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t); testAccPreCheckAWSBudgets(t) },
PreCheck: func() { testAccPreCheck(t); testAccPartitionHasServicePreCheck(budgets.EndpointsID, t) },
Providers: testAccProviders,
CheckDestroy: testAccAWSBudgetsBudgetDestroy,
Steps: []resource.TestStep{
Expand Down

0 comments on commit 3ce9225

Please sign in to comment.