Supported languages
akamai_iam_supported_langs
Get the list of all the possible languages Akamai supports.
data "akamai_iam_supported_langs" "my_languages" {
}
output "my_languages" {
value = data.akamai_iam_supported_langs.my_languages
}
Changes to Outputs:
+ my_languages = {
+ id = "akamai_iam_supported_langs"
+ languages = [
+ "Deutsch",
+ "English",
+ "Español",
+ "Español (España)",
+ "Français",
+ "Italiano",
+ "Português",
+ "中文 (简体)",
+ "中文 (繁體)",
+ "日本語",
+ "한국어",
]
}
Arguments
The data source is passed empty. The config_section
argument in the Akamai provider
block of your Terraform configuration provides the necessary information.
Attributes
Returned to you is a computed list of languages supported by Akamai.
Updated 8 months ago