Search code examples
amazon-web-servicesaws-cloudformationamazon-cloudfront

How to resolve this error - Value of property {/DistributionConfig/Aliases} does not match type {Array}


I am getting this error while creating a distribution

error msg

this is my code

this is my code


Solution

  • It looks like "Aliases" needs to be an array, but you provide an object. Try to change { and } to [ and ] like this:

    "Aliases": [
        ... 
    ]