gpt4 book ai didi

aws-cloudformation - 使用 Redshift Spectrum 进行云形成

转载 作者:行者123 更新时间:2023-12-03 07:19:32 24 4
gpt4 key购买 nike

我想配置 RedShift Spectrum具有 Cloud Formation 模板的资源。执行此操作的 CF 模板参数是什么?

例如,普通的 RedShift 可以是 templated就像,

myCluster: 
Type: "AWS::Redshift::Cluster"
Properties:
DBName: "mydb"
MasterUsername: "master"
MasterUserPassword:
Ref: "MasterUserPassword"
NodeType: "dw.hs1.xlarge"
ClusterType: "single-node"
Tags:
- Key: foo
Value: bar

什么是频谱等效项?

最佳答案

您的模板看起来不错,但还需要考虑一件事,即 CF 文档将其列为附加参数所需的 IAM 角色(IAMRoles 数组)。

myCluster: 
Type: "AWS::Redshift::Cluster"
Properties:
DBName: "mydb"
MasterUsername: "master"
MasterUserPassword:
Ref: "MasterUserPassword"
NodeType: "dw.hs1.xlarge"
ClusterType: "single-node"
IamRoles:
- "arn:aws:iam::123456789012:role/S3Access"
Tags:
- Key: foo
Value: bar

需要 IAM 角色来与 Glue/Athena 目录通信并根据 S3 中的数据验证您的请求。

关于aws-cloudformation - 使用 Redshift Spectrum 进行云形成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46007829/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com