Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Encryption + Formatting #41

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
cleanup formatting
  • Loading branch information
Dennizz committed Aug 15, 2023
commit c88ff7ea5c7f24c07cc065f6dc46e4473abe2861
2 changes: 1 addition & 1 deletion copilot_build_azure/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ resource "azurerm_linux_virtual_machine" "aviatrix_copilot_vm" {
network_interface_ids = [azurerm_network_interface.aviatrix_copilot_nic.id]
resource_group_name = var.use_existing_vnet == false ? azurerm_resource_group.aviatrix_copilot_rg[0].name : var.resource_group_name
size = var.virtual_machine_size
custom_data = base64encode(local.custom_data)
custom_data = base64encode(local.custom_data)

os_disk {
name = var.os_disk_name
Expand Down
2 changes: 1 addition & 1 deletion copilot_build_oci/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ output "dhcp_options_id" {

data "oci_core_route_tables" "route_table" {
compartment_id = var.compartment_ocid
display_name = var.routetable_display_name
display_name = var.routetable_display_name
}

output "route_table_id" {
Expand Down
4 changes: 2 additions & 2 deletions copilot_cluster_initialize_aws/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ resource "null_resource" "run_script" {
}

provisioner "local-exec" {
when = destroy
command = "python3 -W ignore ${path.module}/clean_controller_sg.py ${self.triggers.argument_destroy}"
when = destroy
command = "python3 -W ignore ${path.module}/clean_controller_sg.py ${self.triggers.argument_destroy}"
on_failure = continue
}
}
2 changes: 1 addition & 1 deletion copilot_cluster_initialize_aws/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ variable "node_copilot_sg_names" {
description = "list of node copilot security group names"
}

variable "private_mode"{
variable "private_mode" {
type = bool
description = "in private mode or not"
default = false
Expand Down
4 changes: 2 additions & 2 deletions copilot_cluster_initialize_azure/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ resource "null_resource" "run_script" {
}

provisioner "local-exec" {
when = destroy
command = "python3 -W ignore ${path.module}/clean_controller_sg.py ${self.triggers.argument_destroy}"
when = destroy
command = "python3 -W ignore ${path.module}/clean_controller_sg.py ${self.triggers.argument_destroy}"
on_failure = continue
}
}
2 changes: 1 addition & 1 deletion copilot_cluster_initialize_azure/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ variable "node_copilot_security_rule_priorities" {
description = "list of node copilot security rule priorities"
}

variable "private_mode"{
variable "private_mode" {
type = bool
description = "in private mode or not"
default = false
Expand Down
4 changes: 2 additions & 2 deletions copilot_simple_initialize_aws/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ resource "null_resource" "run_script" {
}

provisioner "local-exec" {
when = destroy
command = "python3 -W ignore ${path.module}/clean_controller_sg.py ${self.triggers.argument_destroy}"
when = destroy
command = "python3 -W ignore ${path.module}/clean_controller_sg.py ${self.triggers.argument_destroy}"
on_failure = continue
}
}
2 changes: 1 addition & 1 deletion copilot_simple_initialize_aws/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ variable "copilot_password" {
description = "main copilot password"
}

variable "private_mode"{
variable "private_mode" {
type = bool
description = "in private mode or not"
default = false
Expand Down