出演了这么长时间,我想我错过了一些愚蠢的东西。
编写脚本以将信息写入文件。所有变量都是从另一个函数传递来写入文件的字符串。

这是我的代码:

 53 def makeMainTF():
 54         NameTag,mcGroupTag,mcIPTag = makeNameMCTag()
 55         yourName = getAccessSecretName()
 56         instanceType ="t2.micro"
 57         with open ("vlslabMain.tf","w") as text_file:
 58                 text_file.writelines(['provider \"aws\" {\n',
 59                                       '  ',
 60                                         'access_key = \"${var.access_key}\"\n',
 61                                       '  ',
 62                                         'secret_key = \"${var.secret_key}\"\n',
 63                                       '  ',
 64                                         'region     = \"${var.access_key}\"\n',
 65                                       '}\n\n\n',
 66                                       'resource \"aws_instance\" \"example\" {\n',
 67                                         '  ',
 68                                       'ami = \"${lookup(var.amis, var.region)}\"\n',
 69                                         '  ',
 70                                         'instance_type = \"%s\" \n}' % instanceType,
 71                                         '\n\n\n\n',
 72                                         'tags {\n',
 73                                         '   ',
 74                                         'Name = \"%s\"\n' % NameTag,
 75                                         '   ',
 76                                         'Multicast = \"%s,%s\"' % (mcGroupTag,mcIPTag),
 77                                         '   ',
 78                                         'Owner = \"%s\"' % yourName,
 79                                         '\n}'])


不知道为什么我得到这个错误:

Enter Access Key: asd
Enter Secret Key: asd
Enter your name: asd
Access Key: asd
Secret Key: asd
Your full name is: asd
Traceback (most recent call last):
  File "terraTFgen.py", line 86, in <module>
    makeMainTF()
  File "terraTFgen.py", line 78, in makeMainTF
    'Owner = \"%s\"' % yourName,
TypeError: not all arguments converted during string formatting


也许我已经盯着看了太久,但是我没有看到语法错误。

它实际上写了

Enter Access Key: asd
Enter Secret Key: asd
Enter your name: asd
Access Key: asd
Secret Key: asd
Your full name is: asd


但是该错误导致脚本无法写入实际文件。

谢谢您的帮助!
****编辑***

这是我用来获取yourName变量的函数

 3 def getAccessSecretName():
  4         access_key = raw_input("Enter Access Key: ")
  5         secret_key = raw_input("Enter Secret Key: ")
  6         yourName = raw_input("Enter your name: ")
  7         print "Access Key: %s" % access_key
  8         print "Secret Key: %s" % secret_key
  9         print "Your full name is: %s" % yourName
 10         return access_key, secret_key, yourName

最佳答案

将78行替换为以下内容,然后尝试-

'Owner = \"%s\"' % " ".join(yourName),


实际上,您的名字似乎是一个元组。
上面的代码会将其转换为字符串值。

编辑:-(回答OP的最后评论)

查看getAccessSecretName()函数的第10行-

return access_key, secret_key, yourName


它返回access_key,secret_key和yourName的元组。

因此,如果您只想将yourName写入文件,

(选项1)

将功能getAccessSecretName()中的第55行替换为

access_key, secret_key, yourName = getAccessSecretName()


这样,您可以将这三个值解压缩为不同的变量,

并将第78行替换为以下内容-

'Owner = \"%s\"' % yourName


编辑2(选项II)

如果您只对yourName变量感兴趣,也可以
就像是

yourName = getAccessSecretName()[2]


用上面的行替换行55。在这里,您将在特定位置将元组的值复制到变量yourName,而忽略其他值。

09-15 12:23