generated from cloudposse/terraform-example-module
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
fixtures.us-east-2.tfvars
32 lines (27 loc) · 1015 Bytes
/
fixtures.us-east-2.tfvars
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
region = "us-east-2"
namespace = "eg"
environment = "ue2"
stage = "test"
name = "service-quotas"
service_quotas = [
{
quota_code = "L-93826ACB" # aka `Routes per route table`
service_code = "vpc"
value = 100 # since this is non-null, the module should try to create a service quota for this value
},
{
quota_name = "Subnets per VPC" # aka `L-44499CD2`
service_code = "vpc"
value = 250 # since this is non-null, the module will find the `quota_code` and try to create a service quota for this value
},
{
quota_code = "L-F678F1CE" # aka `VPC per Region`
service_code = "vpc"
value = null # since this is null, the module should try to lookup the value of this service quota, it should be default
},
{
quota_name = "VPC security groups per Region" # aka `L-E79EC296`
service_code = "vpc"
value = null # since this is null, the module should try to lookup the value of this service quota, it should be default
}
]