Skip to content

Commit

Permalink
Merge pull request #7 from MarciaRieferJohnston/main
Browse files Browse the repository at this point in the history
First editing pass
  • Loading branch information
MarciaRieferJohnston authored Feb 2, 2023
2 parents 572b869 + c29d24b commit 1c1c2f0
Show file tree
Hide file tree
Showing 13 changed files with 174 additions and 200 deletions.
163 changes: 75 additions & 88 deletions .header.md

Large diffs are not rendered by default.

175 changes: 81 additions & 94 deletions README.md

Large diffs are not rendered by default.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
4 changes: 2 additions & 2 deletions examples/basic/outputs.tf
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@

output "region" {
description = "AWS region where the cluster is provisioned"
description = "AWS Region where the cluster is provisioned"
value = module.mendix_private_cloud_example.region
}

output "cluster_name" {
description = "Kubernetes Cluster Name"
description = "Kubernetes cluster name"
value = module.mendix_private_cloud_example.cluster_name
}
4 changes: 2 additions & 2 deletions examples/basic/variables.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
variable "aws_region" {
type = string
description = "AWS region name"
description = "AWS Region name"
}

variable "domain_name" {
Expand All @@ -25,7 +25,7 @@ variable "cluster_secret" {

variable "mendix_operator_version" {
type = string
description = "Mendix Private Cloud Operator Version"
description = "Mendix Private Cloud Operator version"
default = "2.10.0"
}

Expand Down
4 changes: 2 additions & 2 deletions modules/databases/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ variable "rds_instance_class" {
}

variable "file_storage_endpoint" {
description = "S3 regional endpoint"
description = "S3 Regional endpoint"
type = string
}

Expand All @@ -31,7 +31,7 @@ variable "secrets_manager_name" {

variable "cluster_name" {
type = string
description = "Kubernetes Cluster Name"
description = "Kubernetes cluster name"
}

variable "aws_caller_identity_account_id" {
Expand Down
2 changes: 1 addition & 1 deletion modules/file-storage/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ output "filestorage_endpoint" {
}

output "filestorage_regional_endpoint" {
description = "S3 regional endpoint"
description = "S3 Regional endpoint"
value = aws_s3_bucket.apps_shared_bucket.bucket_regional_domain_name
}

Expand Down
4 changes: 2 additions & 2 deletions modules/monitoring/variables.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
variable "aws_region" {
type = string
description = "AWS region name"
description = "AWS Region name"
}

variable "account_id" {
Expand All @@ -10,7 +10,7 @@ variable "account_id" {

variable "cluster_name" {
type = string
description = "Kubernetes Cluster Name"
description = "Kubernetes cluster name"
}

variable "oidc_provider" {
Expand Down
4 changes: 2 additions & 2 deletions modules/vpc/outputs.tf
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# General output
output "region" {
description = "AWS region"
description = "AWS Region"
value = var.region
}

output "cluster_name" {
description = "Kubernetes Cluster Name"
description = "Kubernetes cluster name"
value = local.cluster_name
}

Expand Down
2 changes: 1 addition & 1 deletion modules/vpc/variables.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
variable "region" {
type = string
description = "AWS region name"
description = "AWS Region name"
}
8 changes: 4 additions & 4 deletions outputs.tf
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@

# General output
output "region" {
description = "AWS region where the cluster is provisioned"
description = "AWS Region where the cluster is provisioned"
value = module.vpc.region
}

# Kubernetes cluster
output "cluster_name" {
description = "Kubernetes Cluster Name"
description = "Kubernetes cluster name"
value = module.vpc.cluster_name
}

Expand Down Expand Up @@ -93,11 +93,11 @@ output "grafana_admin_password" {

# Route53 output
output "aws_route53_zone" {
description = "Route53 Hosted Zone ID"
description = "Route 53 hosted zone ID"
value = aws_route53_zone.cluster_dns.id
}

output "aws_route53_zone_name_servers" {
description = "Route53 Hosted Zone Nameservers"
description = "Route 53 hosted zone nameservers"
value = aws_route53_zone.cluster_dns.name_servers
}
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
variable "aws_region" {
type = string
description = "AWS region name"
description = "AWS Region name"
}

variable "domain_name" {
Expand Down Expand Up @@ -31,7 +31,7 @@ variable "cluster_secret" {

variable "mendix_operator_version" {
type = string
description = "Mendix Private Cloud Operator Version"
description = "Mendix Private Cloud Operator version"
default = "2.10.0"
}

Expand Down

0 comments on commit 1c1c2f0

Please sign in to comment.