Skip to content

Get started on IBM Cloud with a simple template to quickly and easily create a Multizone VPC

Notifications You must be signed in to change notification settings

Cloud-Schematics/easy-multizone-vpc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Easy Multizone VPC

This template allows users to easily create a VPC with one subnet in each of three zones with very few inputs needed by the user to quikly start testing on IBM Cloud.

Default Configuration

ez vpc

The defaults of this module can be overridden with JSON to allow for a fully cusomizable VPC environment.

Table of Contents

  1. Module Variables
  2. VPC and Subnets
  3. Network ACL
  4. Public Gateways
  5. Overriding Variables

Module Variables

Name Type Description Sensitive Default
TF_VERSION string The version of the Terraform engine that's used in the Schematics workspace. 1.0
ibmcloud_api_key string The IBM Cloud platform API key needed to deploy IAM enabled resources. true
prefix string A unique identifier for resources. Must begin with a letter. This prefix will be prepended to any resources provisioned by this template. ez-multizone
region string Region where VPC will be created. To find your VPC region, use ibmcloud is regions command to find available regions. us-south
resource_group string Name of existing resource group where all infrastructure will be provisioned asset-development
tags list(string) List of tags to apply to resources created by this module. ["ez-vpc", "multizone-vpc"]
use_public_gateways bool Add a public gateway in each zone. true
add_cluster_acl_rules bool Add all needed rules to allow an IBM managed cluster to work on your VPC subnes. false
allow_inbound_traffic bool Add a rule to the ACL to allow for inbound traffic from any IP address. true
classic_access bool Add the ability to access classic infrastructure from your VPC. false
override_json string Override any values with JSON to create a completely custom network. All quotation marks must be correctly escaped. "{}"

VPC and Subnets

VPC

This module creates a single VPC in one IBM Cloud Region. The VPC can optionally be given access to Classic Infrastructure resources using the classic_access variable.

Subnets

This module creates three subnets, one in each of the three zones:

Zone Subnet CIDR
1 10.10.10.0/24
2 10.20.10.0/24
3 10.30.10.0/24

Network Access Control List

A single network ACL is created within the VPC and each of the three subnets are attached

Network Access Control Rules

The following network rules are automatically created:

Source Destination Direction Allow / Deny
10.10.10.0/24 Any Inbound Allow
10.20.10.0/24 Any Inbound Allow
10.30.10.0/24 Any Inbound Allow
Any 10.10.10.0/24 Outbound Allow
Any 10.20.10.0/24 Outbound Allow
Any 10.30.10.0/24 Outbound Allow
Any Any Outbound Allow

Additional Access Control Rules

  • To dynamically create allow rules to allow IBM Managed Clusters, set the add_cluster_acl_rules variable to true.
  • To create a rule to allow all inbound traffic to your VPC, set the allow_inbound_traffic variable to true.

Public Gateways

Optionally, a public gateway can be added to each of the three subnets by setting the use_public_gateways variable to true.


Overriding Variables

This template uses a vpc module to create the network architecture. A complete custom network architecture can be created from this template by using the override.json file and setting the override variable to true. For an example of a valid JSON file, see override.json.

For more information about configuring the module see the vpc module for a detailed README and a full list of accepted variables.

About

Get started on IBM Cloud with a simple template to quickly and easily create a Multizone VPC

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published