- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
通过添加一些 cfn-init 来从 S3 存储桶请求数据。我相信我从 powershell 调用 cfn-init.exe 时遇到语法问题,但似乎无法找到位置。该结构取自Bootstrapping AWS CloudFormation Windows Stacks AWS Example 。我还尝试根据 AWS cfn-init documentation 的 bash 结构进行调整但没有成功。
"UserData": {"Fn::Base64": {"Fn::Join": ["\n", [
"<powershell>",
...
"cfn-init.exe -v -s", { "Ref" : "AWS::StackName" },
" -r EC2Instance",
"</powershell>"
"Metadata" : {
"AWS::CloudFormation::Init" : {
"config": {
"files" : {
"C:\\chef\\validator.pem" : {
"source" : "https://s3.amazonaws.com/dtcfstorage/validator.pem",
"authentication" : "s3creds"
}
}
},
"AWS::CloudFormation::Authentication" : {
"s3creds" : {
"type" : "S3",
"roleName" : "awss3chefkeyaccess"
}
}
}
}
cfn-init.exe 正在运行,但由于参数传递到新行而出错:
2018/05/21 15:35:08Z: Message: The errors from user scripts: Usage: cfn-init.exe [options] or: cfn-init.exe [options] or: cat | cfn-init.exe [options] -
cfn-init.exe: error: -s option requires an argument cloudinittest : The term 'cloudinittest' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At C:\Windows\TEMP\UserScript.ps1:30 char:1 + cloudinittest + ~~~~~~~~~~~~~ + CategoryInfo : ObjectNotFound: (cloudinittest:String) [], CommandNotFoundException + FullyQualifiedErrorId : CommandNotFoundException
-r : The term '-r' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At C:\Windows\TEMP\UserScript.ps1:31 char:2 + -r EC2Instance + ~~ + CategoryInfo : ObjectNotFound: (-r:String) [], CommandNotFoundException + FullyQualifiedErrorId : CommandNotFoundException
最佳答案
这是因为您是在顶部使用\n 加入的。如果您在同一行上键入一些参数,则 join 函数的每个参数都将被换行事件分隔!因此,您的命令 cfn-init 已被解释为:
cfn-init.exe -v -s
stack-name
-r EC2Instance
...
由于线路已损坏,该命令无法正常运行。因此,您可以通过空格字符加入。您可以尝试用以下内容替换上面的内容:
{"Fn::Join": [" ", ["cfn-init.exe -v -s", {"Ref":"AWS::StackName"},
"-r EC2Instance"]}
关于amazon-web-services - cloudformation windows userdata cfn-init.exe 行尾问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50453113/
我对 react 和尝试从 .json 文件(称为 userData.json)获取数据还很陌生,但是即使 userData 是一个数组,.map 也不起作用。 我已经检查过了 console.lo
在我的 asp.net 网站上。我将一些数据放入表单例份验证票证的 UserData 部分。稍后我可以使用访问这些数据 (FormsIdentity)(HttpContext.Current.User
OSX 中的磁盘实用程序可以轻松地将 SD 卡镜像装载为设备,但其他 img 文件则不然。 我想将我刚刚在 Android 模拟器中创建的数据库从驱动器中取出并放入我的 osx 文件系统中。 我使用
这是一个小的 C 测试程序来演示我所看到的。它向 Lua 注册一个新的对象类型并执行一个 Lua 脚本。当脚本调用 __len 元方法时,我希望堆栈上只传递一个参数——对象 userdata。相反,它
在Lua中可以通过自定义类型的方式与C语言代码更高效、更灵活的交互。这里我们通过一个简单完整的示例来学习一下Lua中userdata的使用方式。需要说明的是,该示例完全来自于Programming
我需要搜索事件日志,这是我的代码: IEnumerable q = ( from entry in el.Entries.Cast() where entry.Source =
在 C 函数声明中,我看到了这个参数定义: void *userData 所以,那到底是什么?我的猜测:void 表示它可以是任意的,甚至什么都不是。几乎类似于 objective-c 的 id。它只
我在 lua 中有一个接受用户数据对象的函数。 function Class:AttachToUserdataObject(userdataObject) userDataObject.table
我在 lua 中有一个接受用户数据对象的函数。 function Class:AttachToUserdataObject(userdataObject) userDataObject.table
我有以下代码: if (HttpContext.Current.Request.IsAuthenticated == false) { // this isn't reached so i k
我需要我的标记来保存一些数据(不仅仅是位置、片段和标题,它们已经在使用中)。我创建了一个字典,然后将 marker.userData 设置为该字典。但是,我在从字典中获取值时遇到问题。任何帮助将不胜感
只是想在这里确认一下。是否可以直接将 jqGrid 的 userData 与 JavaScript 类型一起使用(而不是使用带有字段的对象)? 如果我修改example在 jqGrid 文档中,我想将
如何适本地缓存从用户的 callbackBegin() 生成的 userData并发送给用户的callbackEnd() . 简单版本(无用户数据 - demo) 我想创建一个支持回调的复杂数据库。对
我正在根据本教程使用表单例份验证为 ASP.Net 4.0 站点实现自定义标识类: Forms Authentication Configuration and Advanced Topics 我想在
我相信你们中的一些人可能会遇到这个问题。我有一个用 C++ 编写的名为矩阵的用户数据对象,使用常用的运算符重载方式,例如。 CMatrix& operator=(const CMatrix& b);
为了防止 Cluster Auto Scaler 终止某些节点,我需要使用以下内容注释它们: cluster-autoscaler.kubernetes.io/scale-down-disabled=
我想使用 LuaJIT,因为它能够在 Lua 中创建结构和数组。但是我使用数据的函数需要存储数据的用户数据或字符串(不是字符串表示形式,仅用作容器)。 但是通过api我看不到这是否可能。是吗? 谢谢。
UserData: Fn::Base64: !Sub | #!/bin/bash echo "Start" >> /v
我有一个运行良好的 Cloudformation 模板。当我以 Base64 形式为其中一项启动配置添加用户数据时,CloudFormation Ruby API 回复我的 JSON 格式不正确。这是
我正在构建并尝试部署打包的 Electron 应用程序。对于我使用的 package Electron package 器 Electron 安装程序-debian Electron 安装程序-dmg
我是一名优秀的程序员,十分优秀!