File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
stackit/internal/services/loadbalancer Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ package loadbalancer
3
3
import (
4
4
"context"
5
5
"fmt"
6
- "github.com/hashicorp/terraform-plugin-framework/resource/schema/booldefault"
7
6
"net/http"
8
7
"strings"
9
8
"time"
@@ -19,6 +18,7 @@ import (
19
18
"github.com/hashicorp/terraform-plugin-framework/path"
20
19
"github.com/hashicorp/terraform-plugin-framework/resource"
21
20
"github.com/hashicorp/terraform-plugin-framework/resource/schema"
21
+ "github.com/hashicorp/terraform-plugin-framework/resource/schema/booldefault"
22
22
"github.com/hashicorp/terraform-plugin-framework/resource/schema/boolplanmodifier"
23
23
"github.com/hashicorp/terraform-plugin-framework/resource/schema/int64planmodifier"
24
24
"github.com/hashicorp/terraform-plugin-framework/resource/schema/listplanmodifier"
Original file line number Diff line number Diff line change @@ -27,6 +27,11 @@ resource "stackit_network_interface" "network_interface" {
27
27
project_id = stackit_network. network . project_id
28
28
network_id = stackit_network. network . network_id
29
29
name = " name"
30
+ lifecycle {
31
+ ignore_changes = [
32
+ security_group_ids ,
33
+ ]
34
+ }
30
35
}
31
36
32
37
resource "stackit_public_ip" "public_ip" {
You can’t perform that action at this time.
0 commit comments