Countries
akamai_iam_countries
Get all the possible countries that Akamai supports.
data "akamai_iam_countries" "my_countries" {
}
output "my_countries" {
value = data.akamai_iam_countries.my_countries
}
Changes to Outputs:
+ my_countries = {
+ countries = [
+ "Ecuador",
+ "Iceland",
+ "Canada",
]
+ id = "akamai_iam_countries"
}
Arguments
This 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 countries.
Updated 8 months ago