1
如何设置Route 53指向Api网关
我正在编写一个Cloudformation配置文件以一次性创建一个网站。这包括创建lambda函数,创建API网关,设置S3存储桶,创建Route 53区域和记录。 至今: 创建Lambda函数及其角色(有效) 创建API网关,它的部署及其角色(有效) 创建一个S3存储桶及其策略(有效) 创建站点的Route 53区域和DNS记录(有效) 为API网关创建一个域(不知道我在做什么) 因此,domain.com可以毫无问题地提供S3存储桶中的文件。将AWS URI用于API网关可以正常工作https://trydsoonjc.execute-api.us-west-2.amazonaws.com/app/path/here。 我要设置的是api.domain.com指向API网关以访问服务器的API。 如何将Route 53连接到API Gateway? 我现在的Cloudformation是这样的: { "AWSTemplateFormatVersion": "2010-09-09", "Description" : "Website", "Parameters": { "DomainName": { "Type" : "String", "Description" : "The DNS name of an Amazon Route 53 hosted zone e.g. server.com", "AllowedPattern" : "(?!-)[a-zA-Z0-9-.]{1,63}(?<!-)", "ConstraintDescription" : "must be …