2015-07-02 73 views
0

我每次都創造了一個CFT模板,當我執行雲的形成,我應該在輸出端接收5個不同的用戶名AWS雲的形成輸出模板

Output 

1st attempt - [email protected] 
2nd attempt - [email protected] 
upto 5 attempts - [email protected] 

Again on 6th attempt it should go back to [email protected] 

"Outputs" : { 
     "Username" : { 
     "Description" : "Appcito Cafe UserName", 
     "Value" : { "Fn::Join" : [ "", [ "testdrive-[dynamic(01-05)]@example.com"]]} 
     },  

誰能請與幫助樣本模板輸出。

+0

這裏「執行雲形成」是什麼意思? – bsvingen

+0

我的意思是堆棧 – user3415790

回答

0

我不知道CloudFormation具有內置的任何內容以支持基於現有值的騎車價值。您有幾種選擇來解決這個問題:

  1. 在傳遞的電子郵件地址(或只是前綴)作爲參數在每次調用
  2. 創建具有此邏輯中有一個自定義資源。您可以使用Lambda函數,該函數可以根據模板的當前值輕鬆地循環這些值。 See more information on custom resources.您應該能夠將模板中的現有值傳遞到此函數中,以使其迭代到下一個值並將其傳回。