Skip to content

Commit

Permalink
Cleanup of formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
saamalik committed Jan 3, 2021
1 parent 7c0f95d commit ee043a5
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 23 deletions.
2 changes: 1 addition & 1 deletion examples/e2e/aws/resource_cloudaccount.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# }

resource "spectrocloud_cloudaccount_aws" "account" {
name = "aws-picard-2"
name = "aws-picard-2"
aws_access_key = var.aws_access_key
aws_secret_key = var.aws_secret_key
}
2 changes: 1 addition & 1 deletion examples/e2e/aws/resource_cluster.tf
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ resource "spectrocloud_cluster_aws" "cluster" {
count = 1
instance_type = "t3.large"
disk_size_gb = 62
azs = [var.aws_region_az]
azs = [var.aws_region_az]
}

machine_pool {
Expand Down
4 changes: 2 additions & 2 deletions examples/e2e/aws/terraform.template.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ aws_secret_key = "..."

# Cluster
aws_ssh_key_name = "default"
aws_region = "..."
aws_region_az = "..."
aws_region = "..."
aws_region_az = "..."
10 changes: 5 additions & 5 deletions examples/e2e/aws/variables.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
variable aws_access_key {}
variable aws_secret_key {}
variable "aws_access_key" {}
variable "aws_secret_key" {}

# Cluster
variable aws_ssh_key_name {}
variable aws_region {}
variable aws_region_az {}
variable "aws_ssh_key_name" {}
variable "aws_region" {}
variable "aws_region_az" {}
2 changes: 1 addition & 1 deletion examples/e2e/vsphere/resource_cluster.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ resource "spectrocloud_cluster_vsphere" "cluster" {
datacenter = var.vsphere_datacenter
folder = var.vsphere_folder

network_type = "DDNS"
network_type = "DDNS"
network_search_domain = var.cluster_network_search
}

Expand Down
8 changes: 4 additions & 4 deletions examples/e2e/vsphere/terraform.template.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ EOT
cluster_network_search = "..." #e.g spectrocloud.local

vsphere_datacenter = "..."
vsphere_folder = "..."
vsphere_folder = "..."

vsphere_cluster = "..."
vsphere_cluster = "..."
vsphere_resource_pool = ""
vsphere_datastore = "..."
vsphere_network = "..."
vsphere_datastore = "..."
vsphere_network = "..."
18 changes: 9 additions & 9 deletions examples/e2e/vsphere/variables.tf
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
variable shared_vmware_cloud_account_name {}
variable "shared_vmware_cloud_account_name" {}

variable cluster_ssh_public_key {}
variable cluster_network_search {}
variable "cluster_ssh_public_key" {}
variable "cluster_network_search" {}

variable vsphere_datacenter {}
variable vsphere_folder {}
variable "vsphere_datacenter" {}
variable "vsphere_folder" {}

variable vsphere_cluster {}
variable vsphere_resource_pool {}
variable vsphere_datastore {}
variable vsphere_network {}
variable "vsphere_cluster" {}
variable "vsphere_resource_pool" {}
variable "vsphere_datastore" {}
variable "vsphere_network" {}

0 comments on commit ee043a5

Please sign in to comment.