使用“ eb start”命令行实用程序创建Elastic Beanstalk环境时如何标记它?


2

5月,AWS引入了标记弹性beantalk环境的功能使用“ eb start”创建弹性beantalk环境时,我们无法弄清楚如何标记该环境。

我们使用“ eb命令行界面”创建环境。使用此机制,您可以通过命令行或使用.elasticbeanstalk / optionsettings传递配置参数environment_name文件。有人知道如何使用optionsettings文件标记环境吗?

如果不是,是否有人知道创建环境后对其进行标记的方法?

Answers:


2

注意最近的EB CLI版本,您现在可以使用EB CLI v3进行此操作。

eb create --tags foo=bar

3

不幸的是,目前eb cli无法实现。标签也是不可变的,在创建环境后不能更改。

但是,您可以使用aws cli使用标签创建环境。

$ aws elasticbeanstalk create-environment --application-name myapp --environment-name myenv --solution-stack-name "64bit Amazon Linux 2014.09 v1.0.9 running PHP 5.5" --tags Key=foo,Value=bar Key=myid,Value=2
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.