Hi
I’m try to create my first Cost Category report using Terraform.
I don’t seem able to find any documentation from the “Provider”.
https://registry.terraform.io/providers/hashicorp/aws/latest/docs
Does anyone ever create AWS Cost Category report using Terraform?
Any help greatly appreciated
This is what I have now:
resource "aws_ce_cost_category" "environment" {
name = "Test Environment"
rule_version = "CostCategoryExpression.v1"
rules = <<CONTENT
[
{
"Value": "production",
"Rule": {
"Dimensions": {
"Key": "LINKED_ACCOUNT_NAME",
"Values": [
"1234567890"
],
"MatchOptions": [
"ENDS_WITH"
]
}
}
},
{
"Value": "staging",
"Rule": {
"Dimensions": {
"Key": "LINKED_ACCOUNT_NAME",
"Values": [
"1234567890"
],
"MatchOptions": [
"ENDS_WITH"
]
}
}
}
]
CONTENT
}
Error: Argument or block definition required
on main.tf line 68, in resource "aws_ce_cost_category" "environment":
An argument or block definition is required here.