I'm currently trying this config:
resource "aws_opsworks_stack" "main" {
name = "example"
region = "eu-west-1"
default_availability_zone = "eu-west-1a"
service_role_arn = "******"
default_instance_profile_arn = "*********"
configuration_manager_name = "Chef"
configuration_manager_version = "12.2"
default_os = "Microsoft Windows Server 2012 R2 Base"
default_ssh_key_name = "jubiitag"
}
But it fails with: aws_opsworks_stack.main: ValidationException: Default Os: Microsoft Windows Server 2012 R2 Base is unsupported with Chef::11.4.
What am I doing wrong?