Skip to content

Commit

Permalink
terraform, azure: add note on handling a 403 when using terraform
Browse files Browse the repository at this point in the history
  • Loading branch information
consideRatio committed Jan 5, 2024
1 parent c8bb78d commit d9edf6b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions terraform/azure/storage.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ resource "azurerm_storage_account" "homes" {

network_rules {
# Allow NFS access only from our nodes, deny access from all other networks
#
# Use of terraform plan or apply can run into issues due to this, but they
# can be handled by temporarily adding your public IP to a firewall
# exception like described in
# https://github.com/2i2c-org/infrastructure/issues/890#issuecomment-1879072422.
#
default_action = "Deny"
virtual_network_subnet_ids = [
azurerm_subnet.node_subnet.id
Expand Down

0 comments on commit d9edf6b

Please sign in to comment.