Skip to content
This repository has been archived by the owner on Sep 16, 2020. It is now read-only.

Commit

Permalink
Update readme.
Browse files Browse the repository at this point in the history
[#154434924]
  • Loading branch information
Genevieve LEsperance committed Feb 22, 2018
1 parent f6a7355 commit 5c121b3
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 18 deletions.
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,6 @@ SERVICE_ACCOUNT_KEY
- iso_seg_ssl_ca_cert: **(optional)** SSL CA certificate used to generate self-signed Iso Seg HTTP load balancer certificate. Required unless `iso_seg_ssl_cert` is specified.
- iso_seg_ssl_ca_private_key: **(optional)** Private key for above SSL CA certificate. Required unless `iso_seg_ssl_cert` is specified.

## Cloud SQL Configuration (optional)
- external_database: *(optional)* When set to "true", a cloud SQL instance will be deployed for the Ops Manager and PAS.

#### Ops Manager
- opsman_sql_db_host: *(optional)* The host the user can connect from. Can be an IP address. Changing this forces a new resource to be created.

Expand Down
32 changes: 17 additions & 15 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ variable "zones" {

variable "opsman_image_url" {
type = "string"
description = "location of ops manager image on google cloud storage"
description = "Location of ops manager image on google cloud storage"
}

variable "optional_opsman_image_url" {
type = "string"
description = "location of ops manager image (to be used for optional extra instance) on google cloud storage"
description = "Location of ops manager image (to be used for optional extra instance) on google cloud storage"
default = ""
}

Expand All @@ -63,19 +63,19 @@ variable "dns_suffix" {

variable "ssl_cert" {
type = "string"
description = "the contents of an SSL certificate to be used by the LB, optional if `ssl_ca_cert` is provided"
description = "The contents of an SSL certificate to be used by the LB, optional if `ssl_ca_cert` is provided"
default = ""
}

variable "ssl_private_key" {
type = "string"
description = "the contents of an SSL private key to be used by the LB, optional if `ssl_ca_cert` is provided"
description = "The contents of an SSL private key to be used by the LB, optional if `ssl_ca_cert` is provided"
default = ""
}

variable "ssl_ca_cert" {
type = "string"
description = "the contents of a CA public key to be used to sign the generated LB certificate, optional if `ssl_cert` is provided"
description = "The contents of a CA public key to be used to sign the generated LB certificate, optional if `ssl_cert` is provided"
default = ""
}

Expand All @@ -96,18 +96,20 @@ variable "external_database" {

variable "opsman_storage_bucket_count" {
type = "string"
default = "0"
description = "Optional configuration of a Google Storage Bucket for BOSH's blobstore"
default = "0"
}

variable "pas_sql_db_host" {
type = "string"
default = ""
type = "string"
description = "The host the user can connect from."
default = ""
}

variable "opsman_sql_db_host" {
type = "string"
default = ""
type = "string"
description = "The host the user can connect from."
default = ""
}

/*****************************
Expand All @@ -127,19 +129,19 @@ variable "iso_seg_ssl_cert" {

variable "iso_seg_ssl_private_key" {
type = "string"
description = "the contents of an SSL private key to be used by the LB, optional if `iso_seg_ssl_ca_cert` is provided"
description = "The contents of an SSL private key to be used by the LB, optional if `iso_seg_ssl_ca_cert` is provided"
default = ""
}

variable "iso_seg_ssl_ca_cert" {
type = "string"
description = "the contents of a CA public key to be used to sign the generated iso seg LB certificate, optional if `iso_seg_ssl_cert` is provided"
description = "The contents of a CA public key to be used to sign the generated iso seg LB certificate, optional if `iso_seg_ssl_cert` is provided"
default = ""
}

variable "iso_seg_ssl_ca_private_key" {
type = "string"
description = "the contents of a CA private key to be used to sign the generated iso seg LB certificate, optional if `iso_seg_ssl_cert` is provided"
description = "The contents of a CA private key to be used to sign the generated iso seg LB certificate, optional if `iso_seg_ssl_cert` is provided"
default = ""
}

Expand All @@ -148,7 +150,7 @@ variable "iso_seg_ssl_ca_private_key" {
********************************/

variable "create_gcs_buckets" {
description = "create Google Storage Buckets for Elastic Runtime Cloud Controller's file storage"
description = "Create Google Storage Buckets for Elastic Runtime Cloud Controller's file storage"
default = true
}

Expand All @@ -157,6 +159,6 @@ variable "create_gcs_buckets" {
*****************************/

variable "pks" {
description = "create the required infrastructure to deploy pks"
description = "Create the required infrastructure to deploy pks."
default = false
}

0 comments on commit 5c121b3

Please sign in to comment.