-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Add support for projects field in Developer Connect Insights InsightsConfig resource #16184
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
503b123
d4e1536
0382191
3bded9e
99fec9c
1a8e9c2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -111,9 +111,9 @@ resource "google_apphub_application" "my_apphub_application" { | |
| depends_on = [time_sleep.wait_for_propagation] | ||
| } | ||
|
|
||
| resource "google_developer_connect_insights_config" "insights_config" { | ||
| resource "google_developer_connect_insights_config" "insights_config_apphub" { | ||
| location = "us-central1" | ||
| insights_config_id = "tf-test-ic%{random_suffix}" | ||
| insights_config_id = "tf-test-ic-apphub-%{random_suffix}" | ||
| project = google_project.project.project_id | ||
| annotations = {} | ||
| labels = {} | ||
|
|
@@ -133,3 +133,15 @@ resource "google_developer_connect_insights_config" "insights_config" { | |
| } | ||
| depends_on = [time_sleep.wait_for_propagation] | ||
| } | ||
|
|
||
| resource "google_developer_connect_insights_config" "insights_config_projects" { | ||
|
||
| location = "us-central1" | ||
| insights_config_id = "tf-test-ic-projects-%{random_suffix}" | ||
| project = google_project.project.project_id | ||
| annotations = {} | ||
| labels = {} | ||
| projects { | ||
| project_ids = ["projects/${google_project.project.project_id}"] | ||
| } | ||
| depends_on = [time_sleep.wait_for_propagation] | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -315,9 +315,9 @@ func testAccDeveloperConnectInsightsConfig_update(context map[string]interface{} | |
| project = google_project.project.project_id | ||
| depends_on = [time_sleep.wait_for_propagation] | ||
| } | ||
| resource "google_developer_connect_insights_config" "insights_config" { | ||
| resource "google_developer_connect_insights_config" "insights_config_apphub" { | ||
| location = "us-central1" | ||
| insights_config_id = "tf-test-ic%{random_suffix}" | ||
| insights_config_id = "tf-test-ic-apphub-%{random_suffix}" | ||
|
||
| project = google_project.project.project_id | ||
| annotations = {} | ||
| labels = {} | ||
|
|
@@ -337,5 +337,16 @@ func testAccDeveloperConnectInsightsConfig_update(context map[string]interface{} | |
| } | ||
| depends_on = [time_sleep.wait_for_propagation] | ||
| } | ||
| resource "google_developer_connect_insights_config" "insights_config_projects" { | ||
|
||
| location = "us-central1" | ||
| insights_config_id = "tf-test-ic-projects-%{random_suffix}" | ||
| project = google_project.project.project_id | ||
| annotations = {} | ||
| labels = {} | ||
| projects { | ||
| project_ids = ["projects/${google_project.project.project_id}"] | ||
| } | ||
| depends_on = [time_sleep.wait_for_propagation] | ||
| } | ||
| `, context) | ||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.