File tree Expand file tree Collapse file tree 4 files changed +17
-2
lines changed Expand file tree Collapse file tree 4 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -62,8 +62,8 @@ module "microk8s_cluster" {
62
62
| Name | Version |
63
63
| ------| ---------|
64
64
| <a name =" provider_macaddress " ></a > [ macaddress] ( #provider\_ macaddress ) | 0.3.2 |
65
- | <a name =" provider_null " ></a > [ null] ( #provider\_ null ) | 3.2.3 |
66
- | <a name =" provider_random " ></a > [ random] ( #provider\_ random ) | 3.6.3 |
65
+ | <a name =" provider_null " ></a > [ null] ( #provider\_ null ) | 3.2.2 |
66
+ | <a name =" provider_random " ></a > [ random] ( #provider\_ random ) | 3.6.2 |
67
67
| <a name =" provider_sshcommand " ></a > [ sshcommand] ( #provider\_ sshcommand ) | 0.2.2 |
68
68
| <a name =" provider_xenorchestra " ></a > [ xenorchestra] ( #provider\_ xenorchestra ) | 0.29.0 |
69
69
Original file line number Diff line number Diff line change @@ -15,6 +15,11 @@ locals {
15
15
16
16
resource "macaddress" "mac_master_primary" {
17
17
prefix = [0 , 22 , 62 ]
18
+
19
+ lifecycle {
20
+ ignore_changes = [prefix ]
21
+ }
22
+
18
23
}
19
24
20
25
resource "xenorchestra_cloud_config" "master" {
Original file line number Diff line number Diff line change @@ -11,6 +11,11 @@ resource "random_integer" "node" {
11
11
resource "macaddress" "mac_nodes" {
12
12
count = var. node_count
13
13
prefix = [0 , 22 , 62 ]
14
+
15
+ lifecycle {
16
+ ignore_changes = [prefix ]
17
+ }
18
+
14
19
}
15
20
16
21
resource "xenorchestra_cloud_config" "node" {
Original file line number Diff line number Diff line change 52
52
resource "macaddress" "mac_master_secondaries" {
53
53
count = var. master_count - 1
54
54
prefix = [0 , 22 , 62 ]
55
+
56
+ lifecycle {
57
+ ignore_changes = [prefix ]
58
+ }
59
+
55
60
}
56
61
57
62
You can’t perform that action at this time.
0 commit comments