Skip to content

Commit

Permalink
make bootstrap env work
Browse files Browse the repository at this point in the history
  • Loading branch information
raymonstah committed Apr 11, 2023
1 parent 5e68c9d commit 8980205
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bootstrap/terraform/function/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ variable "env" {
variable "region" {
type = string
description = "The region to create Azure resources in"
default = "westus2"
default = "westus3"
}
2 changes: 1 addition & 1 deletion bootstrap/terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
variable "region" {
type = string
description = "The region to create Azure resources in"
default = "westus2"
default = "westus3"
}

variable "ssh_public_key_path" {
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/terraform/vm.tf
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ resource "azurerm_linux_virtual_machine" "vault_azure_vm" {
name = "vault-azure-tests-vm"
resource_group_name = azurerm_resource_group.vault_azure_rg.name
location = azurerm_resource_group.vault_azure_rg.location
size = "Standard_F1"
size = "Standard_B1s"
admin_username = "adminuser"
network_interface_ids = [
azurerm_network_interface.vault_azure_nic.id,
Expand Down

0 comments on commit 8980205

Please sign in to comment.