-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflavors.tf
More file actions
57 lines (49 loc) · 1.06 KB
/
flavors.tf
File metadata and controls
57 lines (49 loc) · 1.06 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
resource "openstack_compute_flavor_v2" "s-x2large" {
name = "s.x2large"
ram = "65536"
vcpus = "32"
disk = "0"
is_public = true
}
resource "openstack_compute_flavor_v2" "s-xlarge" {
name = "s.xlarge"
ram = "32768"
vcpus = "16"
disk = "0"
is_public = true
}
resource "openstack_compute_flavor_v2" "s-large" {
name = "s.large"
ram = "16384"
vcpus = "8"
disk = "0"
is_public = true
}
resource "openstack_compute_flavor_v2" "s-medium" {
name = "s.medium"
ram = "8192"
vcpus = "4"
disk = "0"
is_public = true
}
resource "openstack_compute_flavor_v2" "s-small" {
name = "s.small"
ram = "4096"
vcpus = "2"
disk = "0"
is_public = true
}
resource "openstack_compute_flavor_v2" "s-nano" {
name = "s.nano"
ram = "1024"
vcpus = "1"
disk = "0"
is_public = true
}
resource "openstack_compute_flavor_v2" "s-micro" {
name = "s.micro"
ram = "2048"
vcpus = "1"
disk = "0"
is_public = true
}