This data source is the character set supported by querying RDS instances.
# Declare the data source
data "alicloud_rds_character_set_names" "names" {
engine = "MySQL"
}
output "first_rds_character_set_names" {
value = data.alicloud_rds_character_set_names.names.names.0
}
The following arguments are supported:
engine
- (Required, ForceNew) Database type. Options are MySQL
, SQLServer
, PostgreSQL
, MariaDB
.The following attributes are exported in addition to the arguments listed above:
names
- The list of supported character sets.