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;








1















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 ?










share|improve this question






















  • 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

















1















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 ?










share|improve this question






















  • 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













1












1








1








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 ?










share|improve this question














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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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

















  • 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












1 Answer
1






active

oldest

votes


















0














Please refer Terraform document "https://learn.hashicorp.com/terraform/aws/eks-intro". This will give you more details about configurations.






share|improve this answer























    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
    );



    );













    draft saved

    draft discarded


















    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









    0














    Please refer Terraform document "https://learn.hashicorp.com/terraform/aws/eks-intro". This will give you more details about configurations.






    share|improve this answer



























      0














      Please refer Terraform document "https://learn.hashicorp.com/terraform/aws/eks-intro". This will give you more details about configurations.






      share|improve this answer

























        0












        0








        0







        Please refer Terraform document "https://learn.hashicorp.com/terraform/aws/eks-intro". This will give you more details about configurations.






        share|improve this answer













        Please refer Terraform document "https://learn.hashicorp.com/terraform/aws/eks-intro". This will give you more details about configurations.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 25 at 9:51









        sarvesh shettysarvesh shetty

        935




        935





























            draft saved

            draft discarded
















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            Obelisk of Theodosius Contents History Description Notes Bibliography Further reading External links Navigation menuAge of spirituality : late antique and early Christian art, third to seventh centuryOver 60 picturesObelisks of the World41°00′21.24″N 28°58′31.43″E / 41.0059000°N 28.9753972°E / 41.0059000; 28.97539727724550-7235741376235741376

            밀양 대씨 역사 각주 함께 보기 둘러보기 메뉴밀양 대씨

            1973년 목차 사건 문화 탄생 사망 노벨상 달력 둘러보기 메뉴