What are the AWS::EC2::AvailabilityZone::Name Values?

0

I am trying to deploy a vendor (Cisco) appliance using the vendor-supplied CF template via Terraform.

The CF template has a parameter "pAvailabilityZone" that uses AWS::EC2::AvailabilityZone::Name to present an AZ dropdown.

In my terraform plan I am supplying that parameter the value "us-west-1a"

The stack is for sure in the right region, I can see the stack start to get created in US West 1 (N. California), but it bombs out and says ""Parameter validation failed: parameter value us-west-1a for parameter name pAvailabilityZone does not exist. Rollback requested by user."

I've tried a few variations of the az like "us-west-1-a" but I get the same error. Any ideas?

Thanks!

AJCruz
질문됨 2년 전465회 조회
2개 답변
0

Not sure if this is what you are referring to but are there any other parameters in the CloudFormation template? That one looks like it asks for aws_region as a parameter.

What about your Terraform provider setup? Are you specifying the region there?

# Configure the AWS Provider
provider "aws" {
  region = "us-west-1"
}
profile pictureAWS
전문가
Matt-B
답변함 2년 전
0

Ugh, I coulda swore the US West 1 Region AZ options were 1a & 1c, but I noticed in the CF dropdown the only options are 1b & 1c.

Problem fixed using "us-west-1b" instead of 1a ><

AJCruz
답변함 2년 전

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠