hashicorp / terraform-provider-aws

The AWS Provider enables Terraform to manage AWS resources.
https://registry.terraform.io/providers/hashicorp/aws
Mozilla Public License 2.0
9.61k stars 9k forks source link

[Enhancement]: To support "SubType" in QuickSight createDataSet / updateDataSet #36571

Open kaheicanaan opened 3 months ago

kaheicanaan commented 3 months ago

Description

AWS QuickSight recently supports two representations of the Decimal type: DECIMAL-FIXED and DECIMAL-FLOAT.

Affected Resource(s) and/or Data Source(s)

aws_quicksight_data_set

Potential Terraform Configuration

...
columns {
  name = "booleanColumn"
  type = "BOOLEAN"
}
columns {
  name = "floatColumn"
  type = "DECIMAL"
  sub_type = "FLOAT"  # requires the field `sub_type` only when the `type` is "DECIMAL"
}
...

References

Would you like to implement a fix?

No

github-actions[bot] commented 3 months ago

Community Note

Voting for Prioritization

Volunteering to Work on This Issue