skip to Main Content

How can I correct a Terraform, Error: Incorrect attribute value type error?

Here is a the snippets of relevant code: resource "aws_vpc" "main" { cidr_block = "10.0.0.0/16" } data "aws_availability_zones" "available" { state = "available" } resource "aws_subnet" "private_subnet" { count = length(data.aws_availability_zones.available.names) vpc_id = aws_vpc.main.id cidr_block = "10.0.${20+count.index}.0/24" availability_zone = data.aws_availability_zones.available.names[count.index]…

VIEW QUESTION

How to resolve "Access to requested resource is denied"?

I am getting the following when sending a marketplaceParticipations request to sellers/v1/marketplaceParticipations via Postman after following instructions and examples provided at https://developer-docs.amazon.com/sp-api/docs/connecting-to-the-selling-partner-api { "errors": [ { "message": "Access to requested resource is denied.", "code": "Unauthorized", "details": "" } ] }…

VIEW QUESTION

Python AWS Lambda Execution New Update

Update I changed the params to receive the data directly from a JSON dump to see if that fixed the JSON load issue. Received a new error: (b'{n "errorType": "ValidationMetadataException",n "errorMessage": "The a' b'rgument is null or empty. Provide an…

VIEW QUESTION
Back To Top
Search