File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
examples/single_scope_ipv4 Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -20,14 +20,14 @@ module "basic" {
20
20
21
21
sandbox = {
22
22
name = " mysandbox"
23
- netmask_length = 20
23
+ cidr = [ " 10.0.0.0/20 " ]
24
24
ram_share_principals = var.sandbox_ou_arn
25
25
allocation_resource_tags = {
26
26
env = " sandbox"
27
27
}
28
28
}
29
29
dev = {
30
- cidr = [ " 10.1.0.0/20 " ]
30
+ netmask_length = 20
31
31
32
32
sub_pools = {
33
33
team_a = {
@@ -37,7 +37,7 @@ module "basic" {
37
37
}
38
38
39
39
team_b = {
40
- cidr = [ " 10.1.1.0/24 " ]
40
+ netmask_length = 26
41
41
ram_share_principals = var.prod_account # prod account
42
42
}
43
43
}
Original file line number Diff line number Diff line change @@ -32,4 +32,5 @@ func TestExamplesIPv4Basic(t *testing.T) {
32
32
33
33
defer terraform .Destroy (t , terraformOptions )
34
34
terraform .InitAndApply (t , terraformOptions )
35
+ terraform .ApplyAndIdempotent (t , terraformOptions )
35
36
}
You can’t perform that action at this time.
0 commit comments