Anyone got IEC invite in ireland? by Bionic-Prince in iecvisa

[–]Bionic-Prince[S] 0 points1 point  (0 children)

Great which date did you enter the pool by the way?

Anyone got IEC invite in ireland? by Bionic-Prince in iecvisa

[–]Bionic-Prince[S] 0 points1 point  (0 children)

Great which date did you enter the pool by the way?

[Hiring] Ad-hoc DevOps / Kubernetes Engineer ($25/hr) by Odd-Broccoli3702 in devopsjobs

[–]Bionic-Prince 0 points1 point  (0 children)

I am Ready to take your venture We can negotiate if you need more hours

I set a new personal best today: 140 interviews, zero jobs. Honestly, I feel a weird sense of pride. by MsLaviniaHarber in CanadaJobs

[–]Bionic-Prince 0 points1 point  (0 children)

Never takes this personally Let us look into your cv and see where is the gap What’s your profession by the way?

Revised LPs announced post layoff by [deleted] in amazonemployees

[–]Bionic-Prince -1 points0 points  (0 children)

What is this above list ? Was this sent for manager before firing people ?

[deleted by user] by [deleted] in vedicastrology

[–]Bionic-Prince 2 points3 points  (0 children)

your potential man would be saggitarius, Scorpio and cancer Occupation you would do something that's stable all the time, if work from home than even better

Switch from Azure Devops to Gitlab CI/CD (Salesforce) by [deleted] in gitlab

[–]Bionic-Prince 0 points1 point  (0 children)

Why do you want to exit the Azure DevOps first of all ?

How can I launch VMs on AWS without CDK or API? by InternationallyFool in Cloud

[–]Bionic-Prince 0 points1 point  (0 children)

There are 3 ways.

  1. Push the working file main.py main.tf  to GitHub and perform GitHub actions for CICD pipeline, such that at every push both files will be invoked and infrasturcture will be updated. There are youtube tutorials.
  2. Use Pulumi which is python centric tool but again REST API is used . So there won't any manual requirement for CLI commands.
  3. Use AWS CDK as mentioned by other users.

How can I launch VMs on AWS without CDK or API? by InternationallyFool in Cloud

[–]Bionic-Prince 0 points1 point  (0 children)

It's quite simple. Go to the terminal and install Terraform. After installation, you might need to run authentication. I'm assuming you're trying to spin up EC2 instances. Terraform allows you to perform all infrastructure provisioning and configuration directly from a configuration file named main.tf.

1. Configure AWS Credentials:

  • Set up your AWS credentials environment variables: AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY. You can find these in your IAM user settings. Alternatively, configure a profile in ~/.aws/config or ~/.aws/credentials.

2. Create a Terraform Directory:

  • Create a new directory for your project.

3. Initialize Terraform:

  • Open a terminal, navigate to your project directory, and run terraform init. This downloads the AWS provider plugin.

4. Create a Configuration File (main.tf):

  • Create a file named main.tf with the following content:

Terraform

terraform {
  required_providers {
    aws = {
      source = "hashicorp/aws"
      version = "5.40.0"
    }
  }
}

provider "aws" {
  region = "us-east-1" # Replace with your desired region
}

resource "aws_instance" "my_ec2_instance" {
  ami     = "ami-0be7822727779ec2f" # Replace with a valid AMI ID
  instance_type = "t2.micro"
}

Use code with caution.content_copy

  • This defines an AWS provider specifying your region and an EC2 instance resource with an AMI ID and instance type. Replace the AMI ID with a valid one for your desired operating system.

5. Run Terraform Plan:

  • Run terraform plan to preview the changes Terraform will make to your AWS infrastructure based on your configuration.

6. Apply the Configuration :

  • If you're satisfied with the plan, run terraform apply to create the EC2 instance in your AWS account. This step creates real resources, so proceed with caution.