Cloudformation EKS launch config userdata equivalent in terraformCloudformation launch config userdata fileMapping the AZ to the selected subnet, and the subnets to the selected VPCWhy is the script in the DataUser section of my Ubuntu EC2 instance not running? I am using CloudformationCloudformation ECS clusterCustom CloudFormation Resources in Terraformcfn-init fails to download S3 file even though “aws s3 cp” worksConvert Terraform Templates to Cloudformation TemplatesUserData script with Resource Attribute CloudFormationCannot modify ECS cluster's CloudFormation stackAWS CloudFormation init services as bash script
Do any Labour MPs support no-deal?
Infinite past with a beginning?
Why doesn't Newton's third law mean a person bounces back to where they started when they hit the ground?
Japan - Plan around max visa duration
What is the offset in a seaplane's hull?
Awk syntax, strange variable?
Why did the Germans forbid the possession of pet pigeons in Rostov-on-Don in 1941?
A newer friend of my brother's gave him a load of baseball cards that are supposedly extremely valuable. Is this a scam?
Why are 150k or 200k jobs considered good when there are 300k+ births a month?
How can bays and straits be determined in a procedurally generated map?
How to make payment on the internet without leaving a money trail?
How to get the available space of $HOME as a variable in shell scripting?
Are tax years 2016 & 2017 back taxes deductible for tax year 2018?
If I cast Expeditious Retreat, can I Dash as a bonus action on the same turn?
Patience, young "Padovan"
When blogging recipes, how can I support both readers who want the narrative/journey and ones who want the printer-friendly recipe?
"You are your self first supporter", a more proper way to say it
I’m planning on buying a laser printer but concerned about the life cycle of toner in the machine
Theorems that impeded progress
Is the month field really deprecated?
DOS, create pipe for stdin/stdout of command.com(or 4dos.com) in C or Batch?
A Journey Through Space and Time
I probably found a bug with the sudo apt install function
Should I join office cleaning event for free?
Cloudformation EKS launch config userdata equivalent in terraform
Cloudformation launch config userdata fileMapping the AZ to the selected subnet, and the subnets to the selected VPCWhy is the script in the DataUser section of my Ubuntu EC2 instance not running? I am using CloudformationCloudformation ECS clusterCustom CloudFormation Resources in Terraformcfn-init fails to download S3 file even though “aws s3 cp” worksConvert Terraform Templates to Cloudformation TemplatesUserData script with Resource Attribute CloudFormationCannot modify ECS cluster's CloudFormation stackAWS CloudFormation init services as bash script
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I have a cloudformation template to deploy EKS and worker nodes along with several other resources like RDS, ES, etc.
I want to write a terraform template which does the same job as that of my cloudformation.
I am new to terraform and I got stuck with the userdata section of EKS worker nodes launch configuration.
The section in my cloudformation is:
UserData:
Fn::Base64:
!Sub |
#!/bin/bash
set -o xtrace
/etc/eks/bootstrap.sh $AWS::StackName-cluster
/opt/aws/bin/cfn-signal --exit-code $?
--stack $AWS::StackName
--resource SpotNodeGroup
--region $AWS::Region
I want to replicate the same in terraform and I am not sure what is the equivalent for "/opt/aws/bin/cfn-signal " in terraform.
Any idea what I could use instead ?
amazon-cloudformation terraform terraform-provider-aws
add a comment |
I have a cloudformation template to deploy EKS and worker nodes along with several other resources like RDS, ES, etc.
I want to write a terraform template which does the same job as that of my cloudformation.
I am new to terraform and I got stuck with the userdata section of EKS worker nodes launch configuration.
The section in my cloudformation is:
UserData:
Fn::Base64:
!Sub |
#!/bin/bash
set -o xtrace
/etc/eks/bootstrap.sh $AWS::StackName-cluster
/opt/aws/bin/cfn-signal --exit-code $?
--stack $AWS::StackName
--resource SpotNodeGroup
--region $AWS::Region
I want to replicate the same in terraform and I am not sure what is the equivalent for "/opt/aws/bin/cfn-signal " in terraform.
Any idea what I could use instead ?
amazon-cloudformation terraform terraform-provider-aws
Couple of options here - github.com/hashicorp/terraform/issues/…
– Nathan
Mar 22 at 0:49
Thanks @Nathan for the reply. But can we use a provisioner inside "user_data" section ? I guess it is either provisioner or user_data, isn't it ?
– kreddy
Mar 22 at 21:17
add a comment |
I have a cloudformation template to deploy EKS and worker nodes along with several other resources like RDS, ES, etc.
I want to write a terraform template which does the same job as that of my cloudformation.
I am new to terraform and I got stuck with the userdata section of EKS worker nodes launch configuration.
The section in my cloudformation is:
UserData:
Fn::Base64:
!Sub |
#!/bin/bash
set -o xtrace
/etc/eks/bootstrap.sh $AWS::StackName-cluster
/opt/aws/bin/cfn-signal --exit-code $?
--stack $AWS::StackName
--resource SpotNodeGroup
--region $AWS::Region
I want to replicate the same in terraform and I am not sure what is the equivalent for "/opt/aws/bin/cfn-signal " in terraform.
Any idea what I could use instead ?
amazon-cloudformation terraform terraform-provider-aws
I have a cloudformation template to deploy EKS and worker nodes along with several other resources like RDS, ES, etc.
I want to write a terraform template which does the same job as that of my cloudformation.
I am new to terraform and I got stuck with the userdata section of EKS worker nodes launch configuration.
The section in my cloudformation is:
UserData:
Fn::Base64:
!Sub |
#!/bin/bash
set -o xtrace
/etc/eks/bootstrap.sh $AWS::StackName-cluster
/opt/aws/bin/cfn-signal --exit-code $?
--stack $AWS::StackName
--resource SpotNodeGroup
--region $AWS::Region
I want to replicate the same in terraform and I am not sure what is the equivalent for "/opt/aws/bin/cfn-signal " in terraform.
Any idea what I could use instead ?
amazon-cloudformation terraform terraform-provider-aws
amazon-cloudformation terraform terraform-provider-aws
asked Mar 22 at 0:41
kreddykreddy
61
61
Couple of options here - github.com/hashicorp/terraform/issues/…
– Nathan
Mar 22 at 0:49
Thanks @Nathan for the reply. But can we use a provisioner inside "user_data" section ? I guess it is either provisioner or user_data, isn't it ?
– kreddy
Mar 22 at 21:17
add a comment |
Couple of options here - github.com/hashicorp/terraform/issues/…
– Nathan
Mar 22 at 0:49
Thanks @Nathan for the reply. But can we use a provisioner inside "user_data" section ? I guess it is either provisioner or user_data, isn't it ?
– kreddy
Mar 22 at 21:17
Couple of options here - github.com/hashicorp/terraform/issues/…
– Nathan
Mar 22 at 0:49
Couple of options here - github.com/hashicorp/terraform/issues/…
– Nathan
Mar 22 at 0:49
Thanks @Nathan for the reply. But can we use a provisioner inside "user_data" section ? I guess it is either provisioner or user_data, isn't it ?
– kreddy
Mar 22 at 21:17
Thanks @Nathan for the reply. But can we use a provisioner inside "user_data" section ? I guess it is either provisioner or user_data, isn't it ?
– kreddy
Mar 22 at 21:17
add a comment |
1 Answer
1
active
oldest
votes
Please refer Terraform document "https://learn.hashicorp.com/terraform/aws/eks-intro". This will give you more details about configurations.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55291267%2fcloudformation-eks-launch-config-userdata-equivalent-in-terraform%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Please refer Terraform document "https://learn.hashicorp.com/terraform/aws/eks-intro". This will give you more details about configurations.
add a comment |
Please refer Terraform document "https://learn.hashicorp.com/terraform/aws/eks-intro". This will give you more details about configurations.
add a comment |
Please refer Terraform document "https://learn.hashicorp.com/terraform/aws/eks-intro". This will give you more details about configurations.
Please refer Terraform document "https://learn.hashicorp.com/terraform/aws/eks-intro". This will give you more details about configurations.
answered Mar 25 at 9:51
sarvesh shettysarvesh shetty
935
935
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55291267%2fcloudformation-eks-launch-config-userdata-equivalent-in-terraform%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Couple of options here - github.com/hashicorp/terraform/issues/…
– Nathan
Mar 22 at 0:49
Thanks @Nathan for the reply. But can we use a provisioner inside "user_data" section ? I guess it is either provisioner or user_data, isn't it ?
– kreddy
Mar 22 at 21:17