Skip to content

Commit

Permalink
Update examples for AWS pre-reqs module
Browse files Browse the repository at this point in the history
Signed-off-by: Jim Enright <[email protected]>
  • Loading branch information
jimright committed Jul 13, 2023
1 parent 31c7314 commit 14878fe
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 21 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ module "ex01_minimal_inputs" {
env_prefix = var.env_prefix
aws_region = var.aws_region

aws_key_pair = var.aws_key_pair

deployment_template = var.deployment_template

ingress_extra_cidrs_and_ports = var.ingress_extra_cidrs_and_ports
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ env_prefix = "<ENTER_VALUE>" # Required name prefix for cloud and CDP resources,

# ------- Cloud Settings -------
aws_region = "<ENTER_VALUE>" # Change this to specify Cloud Provider region, e.g. eu-west-1
aws_key_pair = "<ENTER_VALUE>" # Change this with the name of a pre-existing AWS keypair, e.g. my-keypair

# ------- CDP Environment Deployment -------
deployment_template = "<ENTER_VALUE>" # Specify the deployment pattern below. Options are public, semi-private or private
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,6 @@ variable "env_prefix" {
description = "Shorthand name for the environment. Used in resource descriptions"
}

variable "aws_key_pair" {
type = string

description = "Name of the Public SSH key for the CDP environment"

}

# ------- CDP Environment Deployment -------
variable "deployment_template" {
type = string
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ module "ex02_existing_vpc" {
env_prefix = var.env_prefix
aws_region = var.aws_region

aws_key_pair = var.aws_key_pair

deployment_template = var.deployment_template

ingress_extra_cidrs_and_ports = var.ingress_extra_cidrs_and_ports
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,6 @@ variable "env_prefix" {
description = "Shorthand name for the environment. Used in resource descriptions"
}

variable "aws_key_pair" {
type = string

description = "Name of the Public SSH key for the CDP environment"

}

# ------- CDP Environment Deployment -------
variable "deployment_template" {
type = string
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@ module "ex01_create_keypair" {
env_prefix = var.env_prefix
aws_region = var.aws_region

aws_key_pair = aws_key_pair.cdp_keypair.key_name

deployment_template = var.deployment_template

ingress_extra_cidrs_and_ports = var.ingress_extra_cidrs_and_ports
Expand Down

0 comments on commit 14878fe

Please sign in to comment.