Skip to content

Commit 7f14a58

Browse files
fix(cloud): make subnet optional in oci module (#2938)
Co-authored-by: pranav-new-relic <[email protected]>
1 parent a425e3c commit 7f14a58

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require (
77
github.com/mitchellh/go-homedir v1.1.0
88
github.com/newrelic/go-agent/v3 v3.30.0
99
github.com/newrelic/go-insights v1.0.3
10-
github.com/newrelic/newrelic-client-go/v2 v2.70.0
10+
github.com/newrelic/newrelic-client-go/v2 v2.70.1
1111
github.com/stretchr/testify v1.9.0
1212
golang.org/x/exp v0.0.0-20240325151524-a685a6edb6d8
1313
)

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -270,8 +270,8 @@ github.com/newrelic/go-agent/v3 v3.30.0 h1:ZXHCT/Cot4iIPwcegCZURuRQOsfmGA6wilW+S
270270
github.com/newrelic/go-agent/v3 v3.30.0/go.mod h1:9utrgxlSryNqRrTvII2XBL+0lpofXbqXApvVWPpbzUg=
271271
github.com/newrelic/go-insights v1.0.3 h1:zSNp1CEZnXktzSIEsbHJk8v6ZihdPFP2WsO/fzau3OQ=
272272
github.com/newrelic/go-insights v1.0.3/go.mod h1:A20BoT8TNkqPGX2nS/Z2fYmKl3Cqa3iKZd4whzedCY4=
273-
github.com/newrelic/newrelic-client-go/v2 v2.70.0 h1:O6nmfS4QND+0zEJ8aTc7FTYC4esCi/2sjVja4wtrolo=
274-
github.com/newrelic/newrelic-client-go/v2 v2.70.0/go.mod h1:P6rXSHPtayzr50+UEYvvjzYPiADv7w2SqeyKz0z5HkU=
273+
github.com/newrelic/newrelic-client-go/v2 v2.70.1 h1:0XWwRIeBYLrtFmAoU3AVbZluT6f8z8HmMB0D2EZpdFU=
274+
github.com/newrelic/newrelic-client-go/v2 v2.70.1/go.mod h1:P6rXSHPtayzr50+UEYvvjzYPiADv7w2SqeyKz0z5HkU=
275275
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno=
276276
github.com/oklog/run v1.0.0 h1:Ru7dDtJNOyC66gQ5dQmaCa0qIsAUFY3sFpK1Xk8igrw=
277277
github.com/oklog/run v1.0.0/go.mod h1:dlhp/R75TPv97u0XWUtDeV/lRKWPKSdTuV0TZvrmrQA=

website/docs/guides/cloud_integrations_guide.html.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ module "oci_logs_integration" {
308308
309309
# network components
310310
create_vcn = true # set to false to reuse existing VCN/subnet created from metrics module
311-
function_subnet_id = module.oci_metrics_integration.vcn_network_details.subnet_id # ignored when create_vcn = true
311+
function_subnet_id = "" # ignored when create_vcn = true
312312
313313
# function application environment variables configuration
314314
image_version = "latest" # latest image version for the logging function

0 commit comments

Comments
 (0)