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

            SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

            용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

            155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해