Found 274 results

Search Tips:

To OR search terms: "terraform aws"

To AND search terms: "+terraform +aws"

To filter or reject search terms: "-aws"

Terrafile GitHub Example

August 25, 2021
We'll demo and go through an Terrafile example with a GitHub source Links: Terraspace Docs: Git
4:57

Terrafile Terraform Registry Example

August 25, 2021
We'll demo and go through an Terrafile example with a Terraform Registry source Links: Terraspace Docs: Terraform Registry
3:58

Terrafile Stack Option

August 25, 2021
We'll cover what the Stack Option is and how it can save you time when trying out examples. Note: The terraspace bundle example command is a generally better approach than the stack option. Links: Terraspace Docs: Terrafile Stack Option
6:57

Terraspace: AWS VPC with the Terraform Registry Module

October 1, 2021
We'll build a VPC using the popular terraform-aws-modules/vpc registry module. This is the most popular and downloaded module on the planet. Links: GitHub: boltops-learn/terraspace-aws-vpc Terraform Registry VPC module: boltops-learn/terraspace...
11:57

Terraform Registry: Navigating and Module Structure

October 2, 2021
We'll learn about the Terraform Registry and show you how to navigate through it. We'll also cover basic module structure. Links: Terraspace Registry
9:01
free lesson

Terraspace: EC2 Instance with aws_instance Terraform Resource

October 3, 2021
We'll build an EC2 instance with the native terraform aws_instance resource. We'll build the project from scratch. Links: GitHub: boltops-learn/terraspace-aws-instance Terraform Docs: aws_instance Terraform Docs: template_file rendered
12:29

Terraspace: EC2 Instance with the Terraform Registry Module

October 3, 2021
We'll build an EC2 instance with the terraform-aws-modules/ec2-instance registry module. Links: GitHub: boltops-learn/terraspace-aws-ec2 Terraform Registry module: terraform-aws-modules/ec2-instance Terraform aws_instance docs: aws_instance Ter...
13:02

Terraspace: RDS MySQL Database with aws_db_instance Terraform Resource

October 4, 2021
We'll build an RDS MySQL Database with the aws_db_instance resource. To test, we’ll connect to the launched DB with the mysql client and confirm it actually works. Links: GitHub: boltops-learn/terraspace-aws-db-instance Terraform Docs: aws_db_...
9:13

Docker vs Kubernetes: High Level Intro

October 6, 2021
Learn about how Docker and Kubernetes are in pretty different spaces. Docker is a container platform. Kubernetes is an orchestration platform that makes use of Docker.
3:46

Kubernetes: Deployment and Service Resources

October 6, 2021
The first introduction to Kubernetes resources. We'll cover the ones that make the most sense to start with the Deployment and Service resources. Links: GitHub: boltops-learn/kubernetes-examples
11:28
free lesson

EKS Managed Nodes Cluster with eksctl

October 9, 2021
We'll walk through creating an EKS cluster with the eksctl tool. We'll create a EKS powered by Managed Nodes. To help learn about the eksctl tool and we'll explore and review what gets created: CloudFormation Stacks VPC Network EKS Cluster EC2 ...
16:55
free lesson

EKS AWS Classic Load Balancer with Service LoadBalancer Type Resource

October 9, 2021
Learn how to create an external public facing load balancer with the simple Service Type LoadBalancer. This creates an AWS Classic Load Balancer. Links: GitHub: boltops-learn/kubernetes-examples aws/clb
7:18

EKS AWS Load Balancers Overview

October 9, 2021
Learn about the different AWS Load Balancers and how they map to EKS Kubernetes resources like Service and Ingress Resources. Kubernetes Service resources are layer 4 load balancers. Kubernetes Ingress resources are layer 7 load balancers. AWS has...
3:14

EKS AWS Load Balancer Controller Setup

October 9, 2021
Learn how to set up the EKS AWS Load Balancer Controller plugin. It's the control loop that is needed to create Network Load Balancers with a Kubernetes Service Resource. And it's also used to create an Application Load Balancers with an Kubernete...
6:32

EKS AWS Network Load Balancer with Service Resource

October 9, 2021
Learn how to create an AWS Network Load Balancer with a Kubernetes Service Resource. Links: GitHub: boltops-learn/kubernetes-examples aws/nlb
3:55

EKS AWS Application Load Balancer with Ingress Resource

October 9, 2021
Learn how to create an AWS Application Load Balancer with a Kubernetes Ingress Resource. Links: GitHub: boltops-learn/kubernetes-examples aws/alb
4:39

Kubernetes: kubectl logs command

October 9, 2021
Learn useful tips about the kubectl logs command. This is how you can see your container logs. Links: GitHub: boltops-learn/kubernetes-examples
3:47

Kubernetes: kubectl exec command

October 9, 2021
Learn how exec or "ssh" into a container and so you can do live debugging and make live modifications. Links: GitHub: boltops-learn/kubernetes-examples
3:12

Kubernetes: Learn About More Resource Types

October 9, 2021
There's a lot more Kubernetes resources out there than just Deployment and Service. We'll cover mroe commmon ones and also show you with the kubectl api-resources command how you can list them all. Links: GitHub: boltops-learn/kubernetes-exampl...
5:13

Kubernetes: ConfigMap Resource

October 10, 2021
Learn about the Kubernetes ConfigMap Resource. This is what you can use to store non-sensitive key-value variables and use them in your container. Links: GitHub: boltops-learn/kubernetes-examples examples/config_map
5:00

Kubernetes: Secret Resource

October 11, 2021
Learn about the Kubernetes Secret Resource. This is what you can use to store sensitive key-value variables and use them in your container. Links: GitHub: boltops-learn/kubernetes-examples examples/secret
6:22

Kubernetes Tools: Kustomize vs Helm vs Kubes

October 11, 2021
We'll give an overview and compare some Kubernetes Deploy tools: Kustomize, Helm and Kubes. Kustomize is a YAML purist approach. Helm is really more like a package manager. Kubes is an application-focused deployment tool.
9:31

Kubernetes kubectl explain Command: How to Find YAML Schema Fields Available

October 11, 2021
Learn how to use the kubectl explain command. It'll show you what fields are available for your Kubernetes YAML Resource files. Notes: kubectl explain kubectl api-resources Links: GitHub: boltops-learn/kubernetes-examples
4:03

Kubernetes Kustomize Intro: overlays dev and prod

October 11, 2021
We'll learn about the Kustomize tool and show you how it works. We'll cover: basic intro with no overlays common intro with overlays: dev and prod envs Links: GitHub: boltops-learn/kubernetes-examples examples/kustomize-intro
16:25
free lesson

Kubernetes Helm Intro: dev and prod

October 11, 2021
We'll learn about the Helm package manager tool and show you how it works. We'll cover: Deploy an app as a Helm Chart for different environments like dev and prod We'll introduce the Helm templating language: Sprig Links: GitHub: boltops-lea...
11:44
free lesson

BoltOps Tools