github.com/jpreese/tflint@v0.19.2-0.20200908152133-b01686250fb6/rules/awsrules/models/mappings/budgets.hcl (about) 1 import = "aws-sdk-go/models/apis/budgets/2016-10-20/api-2.json" 2 3 mapping "aws_budgets_budget" { 4 account_id = AccountId 5 name = BudgetName 6 budget_type = BudgetType 7 time_unit = TimeUnit 8 } 9 10 test "aws_budgets_budget" "account_id" { 11 ok = "123456789012" 12 ng = "abcdefghijkl" 13 } 14 15 test "aws_budgets_budget" "name" { 16 ok = "budget-ec2-monthly" 17 ng = "budget:ec2:monthly" 18 } 19 20 test "aws_budgets_budget" "budget_type" { 21 ok = "USAGE" 22 ng = "MONEY" 23 } 24 25 test "aws_budgets_budget" "time_unit" { 26 ok = "MONTHLY" 27 ng = "HOURLY" 28 }