在CI环境中运行CDK部署

时间:2019-08-05 13:33:09

标签: aws-cdk

经历this tutorial

运行cdk deploy时,它会征求部署许可。我假设这是由于本教程前面创建的IAM资源所致。我无法在CI环境中运行此程序,因为无法回答该问题。看起来没有办法以非交互方式运行它?

我在文档中也找不到任何东西吗?

1 个答案:

答案 0 :(得分:2)

如果对现有IAM角色/用户等进行了更改,或者创建了新角色,则必须通过键入“ y”来确认部署,您可以使用选项library(ggplot2) library(scales) data(SLC4A1, package="ggplot2") SLC4A1 <- read.csv(file.choose(), header = TRUE) # bubble chart showing position of polymorphisms on gene, the frequency of each of these # polymorphisms, where they are prominent on earth, and p-value SLC4A1ggplot <- ggplot(SLC4A1, aes(Position, log10(Frequency)))+ geom_jitter(aes(col=Geographical.Location, size =(p.value)))+ labs(subtitle="Frequency of Various Polymorphisms", title="SLC4A1 Gene") + labs(color = "Geographical Location") + labs(size = "p-value") + labs(x = "Position of Polymorphism on SLC4A1 Gene") + scale_size_continuous(range=c(1,4.5), trans = "reverse") + guides(size = guide_legend(reverse = TRUE))