使用将源设置为git存储库的Terraform模块时无法使用输出

时间:2018-06-08 16:26:36

标签: terraform

当我使用git存储库作为模块的源时,我在使用输出时遇到了困难。它在terraform init期间提前失效。

此作品

这里我使用testmodule的相对路径。我可以在这里运行terraform init和terraform计划。

port csv with open("o77069894.out","r+",encoding='utf8') as fin:
headerline = fin.readline()

amount = 0
debit = 0
value = 0
for row in csv.reader(fin,delimiter=","):

    value = float(row[17]) if value else 0.0
    debit+=value
print (debit)

这不起作用

这里我使用git存储库作为源。

执行此操作和terraform init时,我收到此错误。

const prevArray = this.state.array;
const itemsToAdd = [item, item, item];

//this function map the prev array escaping elements to remove 
//and then push itemsToAdd to the new array
const updateArray = ( i = [0], newArray = [] ) => 
  i < prevArray ? 
    yourRemovingCondition(prevArray[i]) ? 
      updateArray( i + 1, newArray ) 
    : updateArray( i + 1, [...newArray, prevArray[i])
  : [...newArray, ...itemsToAdd]
;

setState({array: updateArray()];

0 个答案:

没有答案