DAY-4 DevOps Assignment

1. What is terraform? Terraform is an open-source infrastructure as code software tool created by HashiCorp. HashiCorp Terraform is an infrastructure as code tool that lets you define both cloud and on-prem resources in human-readable configuration files that you can version, reuse, and share. You can then use a consistent workflow to provision and manage all of your infrastructure throughout its lifecycle. 2. One example terraform program resource “github_repository” “example” { name=”example9999999″ description = “My awesome codebase hey”visibility = “public”

Read more

Post-3 Terraform

What is terraform? Terraform is a tool which is used to write a code for infrastructure and it allows to programmatically provision the physical resources an application requires to run. This helps to manages the application infrastructure through programming. It is used to automate the provisioning of your cloud resources. Terraform is an open-source, cloud-agnostic provisioning tool developed by HashiCorp and written in GO language. One example terraform program. resources.tf resource “github_repository” “Sample” {name = “Proj1”description = “My first project”

Read more

Assignment-4 . Terraform

Terraform Terraform is an open source “Infrastructure as Code” tool, created by HashiCorp. Terraform was in GO Language.It can manage not only existing on-prem solutions but also can work for almost all popular cloud service providers like AWS, Azure, GCP A declarative coding tool, Terraform enables developers to use a high-level configuration language called HCL (HashiCorp Configuration Language) to describe the desired “end-state” cloud or on-premises infrastructure for running an application. It then generates a plan for reaching that end-state and executes

Read more

Terraform Assingment

1)what is terraform Terraform is an open source “Infrastructure as Code” tool. It is used by DevOps teams to automate infrastructure tasks. It is used to define and provision the complete infrastructure using an easy-to-learn declarative language. It is an infrastructure provisioning tool where you can store your cloud infrastructure setup as codes.  2)example terraform program provider “github” {token = “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”owner = “vunnava-reshma”} resource “github_repository” “example” {name = “reshma”description = “My awesome codebase “ visibility = “public”} 3)List of 5 terraform

Read more

Assignment-4

what is terraform Terraform is a tool which is used to write a code for infrastructure and it allows to programmatically provision the physical resources an application requires to run. it works across all the cloud providers at the same time.Terraform’s direct competitors like cloudFormation,which work primarly with a single cloud provider only.This helps to manages the application infrastructure through programming. One example terraform program resource “github_repository” “Sample” {name = “Proj1”description = “My first project” visibility = “public”} provider github

Read more

1)What is terraform?

Terraform is an open source “Infrastructure as Code” tool, created by HashiCorp. A declarative coding tool, Terraform enables developers to use a high-level configuration language called HCL (HashiCorp Configuration Language) to describe the desired “end-state” cloud or on-premises infrastructure for running an application. It then generates a plan for reaching that end-state and executes the plan to provision the infrastructure. 2)One example terraform program variable “include_ec2_instance”  {  type = bool default = true  }  resource “aws_instance” “example”  {  count = var.include_ec2_instance ? 1 :0 # (other resource arguments…)  }  output “instance_ip_address”  {  value = one(aws_instance.example[*].private_ip)  } 3)List of

Read more

Assignment for terraform

*What is terraform? it is a open source tool.it is a software which enables to create ,change and improve infrastructure .terraform used to automate the provisioning of your cloud resources.it helps to automate infrastructure tasks.terraform facilitates your DevOps team to easily define, provision, and configure resources in on-premises and cloud servers efficiently . *One example terraform program install terraform. create terraform.tf file and create a new file to add providers and run terraform init and create resources.tf file to add code

Read more

Day 4 : Assignment – by Gorsa Lakshmi Niharika

What is Terraform? HashiCorp Terraform is an infrastructure as code tool that makes us to define both cloud and on-prem resources in human-readable configuration files, It helps us to version, reuse and share. Users defines provider data center infrastructure in declarative configuration language which is known as HashiCorp Configuration Language. It helps engineers to programmatically provision the physical resources an application which can be able to run. An Example on Github handling by Terraform resource “github_repository” “example” {   name       

Read more

What is terraform? by Aishwarya Kurada

Terraform is one of the most popular Infrastructure-as-code (IaC) tool, used by DevOps teams to automate infrastructure tasks. It is used to automate the provisioning of your cloud resources. Terraform is an open-source, cloud-agnostic provisioning tool developed by HashiCorp and written in GO language.  One example terraform program variable “include_ec2_instance” { type = bool default = true } resource “aws_instance” “example” { count = var.include_ec2_instance ? 1 : 0 # (other resource arguments…) } output “instance_ip_address” { value = one(aws_instance.example[*].private_ip) } List

Read more

Day-4 Assignment

1) What is terraform? A) Terraform is a tool which is used to write a code for infrastructure and it allows to programmatically provision the physical resources an application requires to run. This helps to manages the application infrastructure through programming. 2)  One example terraform program. A) resource “github_repository” “Sample” {name = “Proj1”description = “My first project” visibility = “public”} provider github { token=”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” owner=”Organization” } 3) List of 5 terraform commands and its use A) terraform init – It

Read more

Day-4

 What is terraform? Hashicorp is an organisation or company that provides us Terraform platform.Terraform is an infrastructure as code tool that lets us understand or work with both cloud and also some of the readable configuration files that we can edit , plan,apply changes,version and reuse and also share. One example terraform program resource “github_repository” “example” {   name        = “example9999999”   description = “My awesome codebase hey”   visibility = “public” } provider “github” { token = “xxxxxxx” owner

Read more

Assignment 4 by JVarshita

Q1 – Terraform is known for managing external services very easily and efficiently by managing multiple clouds all together. It is an open-source management infrastructure that helps in enabling cloud safely and predictably create, change, and improve infrastructure of external resources. It is created by Hashicrop. In short, we can configure resources in cloud server. Q2 – ONE EXAMPLE OF TERRAFORM PROGRAM: resource “github repo”(#we can use any other repo given) “example” { name = “var999999” description = “Any cloudbase

Read more

Day 4-Assignment by Dasari Sowmya

1) What is terraform? Terraform is a provisioning declarative tool that based on Infrastructure as a Code Paradigm. It is written in Golang. It is a open source. Owned by Hashicorp company. It is a multipurpose composition tool to composes multiple tiers (SaaS/PaaS/IaaS) and a plugin-based architecture model. 2)One example terraform program using github as a provider provider “github” { token=”github personal access token XXXXXXX” } resource “github_repository” “example” {name = “example”description = “My awesome codebase” visibility = “public”} 3)List

Read more

Terraform

What is terraform? Terraform is an open source software tool that allows engineers to the physical resources that are required to run for an application. The infrastructure as a code is an IT practice that manages the application’s IT infrastructure through programming. This allows the developers to manage the resources that an operating system manually configure. It automatically maps the given resources to a default provider identified. -One example terraform program resource “github_repository” “example” { name = “example” description =

Read more

What is terraform

Terraform is a code tool it is an open source created by hashicrop. It makes users to write code in easy way. It then generates a plan for reaching that end-state and executes the plan to provision the infrastructure. It makes you define both cloud and on-prem resources in human-readable configuration. Example on terraform provider “aws” { region = “us-west-1” } List of five commands Validate – Check whether the configuration is valid or not apply – Create or update

Read more

Terraform

What is terraform? It is an open source infrastructure as code software tool that allows to programmatically provision the physical resources an application requires to run. Example //provider code for github provider provider “github” {token = “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”owner = “Jayesh”} //resource code resource “github_repository” “example” {name = “test”description = “test repo” visibility = “public”} 5 terraform commands init :Used to initialize provider plan : Used to create a execution plan. apply: It executes the actions proposed in plan commands. show :

Read more

Terraform

Terraform is an open-source infrastructure as code software tool created by HashiCorp. Users define and provide data center infrastructure using a declarative configuration language known as HashiCorp. Terraform Program 5 Terraform Commands terraform version-display Terraform binary version, also warns if version is old terraform init- initialize directory, pull down providers terraform plan-to output your plan to apply it later. terraform apply-deploys or applies your configuration to a provider. terraform destroy-will destroy your infrastructure terraform show- current state of a saved plan,

Read more

DAY-3 DevOps Assignment

1. What is kubernetes? Kubernetes is an open-source container orchestration system for automating software deployment, scaling, and management. Google originally designed Kubernetes, but the Cloud Native Computing Foundation now maintains the project.kubernetes manages multiple docker host i.e Containers.It groups containers that make up an application into logical units for easy management and discovery. 2. 5 reasons of using kubernetes kubernetes manage and deploy containerized applications at scale.Kubernetes can help reduce costs by making better use of resources.Kubernetes is that it

Read more

Assignment 3 by Nallagatla Sarvani [25-05-2022]

What is Kubernetes? Kubernetes is an open-source container for automating software deployment, scaling, and management. Kubernetes originally designed by Google, Kubernetes is a portable, extensible, open-source platform for managing containerized workloads and services. Kubernetes is a system that manages containers where a container could be explained as a lightweight virtual machine. To build an application you need to build a bunch of containers and then use Kubernetes to manage those containers. Kubernetes provides an easy way to scale your application, compared

Read more

Assignment-3 . Importances of Kubernetes

Kubernetes Kubernetes is also Known as k8s or kube Kubernetes is an open source container orchestration system for automating software deployment ,scaling, and management. Google originally designed Kubernetes, but the cloud Native Computing Foundation maintains the Kubernetes. Kubernetes manages multiple Docker hosts. Kubernetes services, support, Tools are widely available. 5 Reasons of using Kubernetes -Free Cloud Solution -Same solution for all the problems -A new way to do the same things -Architectural advantages : Scalability Transparency Transparency Version control -Simplified

Read more
1 32 33 34 35 36 332