Skip to content

Commit 3775094

Browse files
authored
fixing deployment issues
1 parent 5162d24 commit 3775094

File tree

3 files changed

+26
-26
lines changed

3 files changed

+26
-26
lines changed

cicd/network.storage.tf

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ resource "azurerm_subnet" "storage" {
99
service_endpoints = []
1010

1111
# Enable private endpoint network policies
12-
private_endpoint_network_policies = "Enabled"
12+
private_endpoint_network_policies = "Disabled"
1313
}
1414

1515
# Create Network Security Group
@@ -59,29 +59,29 @@ resource "azurerm_network_security_group" "storage" {
5959
}
6060

6161
# Deny all other inbound traffic
62-
security_rule {
63-
name = "DenyAllInbound"
64-
priority = 4096
65-
direction = "Inbound"
66-
access = "Deny"
67-
protocol = "*"
68-
source_port_range = "*"
69-
destination_port_range = "*"
70-
source_address_prefix = "*"
71-
destination_address_prefix = "*"
72-
}
73-
# Deny all other outbound traffic
74-
security_rule {
75-
name = "DenyAllOutbound"
76-
priority = 4096
77-
direction = "Outbound"
78-
access = "Deny"
79-
protocol = "*"
80-
source_port_range = "*"
81-
destination_port_range = "*"
82-
source_address_prefix = "*"
83-
destination_address_prefix = "*"
84-
}
62+
# security_rule {
63+
# name = "DenyAllInbound"
64+
# priority = 4096
65+
# direction = "Inbound"
66+
# access = "Deny"
67+
# protocol = "*"
68+
# source_port_range = "*"
69+
# destination_port_range = "*"
70+
# source_address_prefix = "*"
71+
# destination_address_prefix = "*"
72+
# }
73+
# # Deny all other outbound traffic
74+
# security_rule {
75+
# name = "DenyAllOutbound"
76+
# priority = 4096
77+
# direction = "Outbound"
78+
# access = "Deny"
79+
# protocol = "*"
80+
# source_port_range = "*"
81+
# destination_port_range = "*"
82+
# source_address_prefix = "*"
83+
# destination_address_prefix = "*"
84+
# }
8585
}
8686

8787
# Associate NSG with Subnet

docs/cicd.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ All infrastructure for CI/CD lives under `cicd/` and can be customized to meet y
1313

1414
## Prerequisites
1515

16-
- Working local environment of this template. If you do not have one, Follow the step by step instructions for setting up your [**Local Environment**](./../readme.md).
16+
- Working local environment of this template. If you do not have one, Follow the step by step instructions for setting up your [**Local Environment**](../README.md#local-environment)
1717
- An Azure subscription with either User Access Administrator or Owner permissions to create workload identity resources like service principal, and OIDC to be used by the GitHub Actions.
1818
- GitHub CLI (`gh`) installed and authenticated to trigger the bootstrap workflow from your terminal.
1919

infra/modules/copilot_studio/power_platform_users.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,5 @@ resource "powerplatform_user" "new_non_dataverse_user" {
4141
environment_id = local.power_platform_environment_id
4242
security_roles = local.security_role_ids
4343
aad_id = each.value
44-
// disable_delete = false
44+
disable_delete = false
4545
}

0 commit comments

Comments
 (0)