-
Notifications
You must be signed in to change notification settings - Fork 705
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'rfernandezdo-feature/add_ddos_protection_plan_id_var_no…
…n_global_to_DDOS'
- Loading branch information
Showing
4 changed files
with
41 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
examples/networking/ddos_reusing_existing_plan_id/configuration.tfvars
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
#Please don't include this example in CI due to DDOS Cost consumption | ||
|
||
global_settings = { | ||
default_region = "region1" | ||
regions = { | ||
region1 = "australiaeast" | ||
} | ||
} | ||
|
||
resource_groups = { | ||
ddosrg = { | ||
name = "ddos" | ||
region = "region1" | ||
} | ||
} | ||
|
||
ddos_services = { | ||
ddos = { | ||
name = "ddos-testplan" | ||
resource_group_key = "ddosrg" | ||
} | ||
} | ||
|
||
vnets = { | ||
vnet1 = { | ||
# ddos_services_lz_key = "" #If the reference of Remote DDOS subscription plan is being inferred | ||
# ddos_services_key = "ddos" | ||
ddos_protection_plan_id = "/subscriptions/00000000-0000-0000-0000-0000000/resourceGroups/rgname/providers/Microsoft.Network/ddosProtectionPlans/planname" | ||
resource_group_key = "ddosrg" | ||
vnet = { | ||
name = "test-vnet" | ||
address_space = ["10.0.0.0/16"] | ||
} | ||
specialsubnets = {} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters