File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed
examples/data-sources/grafana_k6_project_limits Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,14 @@ resource "grafana_k6_project" "test_project_limits" {
1717 name = "Terraform Project Test Limits"
1818}
1919
20+ resource "grafana_k6_project_limits" "test_limits" {
21+ project_id = grafana_k6_project.test_project_limits.id
22+ vuh_max_per_month = 10000
23+ vu_max_per_test = 10000
24+ vu_browser_max_per_test = 1000
25+ duration_max_per_test = 3600
26+ }
27+
2028data "grafana_k6_project_limits" "from_project_id" {
2129 project_id = grafana_k6_project.test_project_limits.id
2230}
Original file line number Diff line number Diff line change @@ -2,6 +2,14 @@ resource "grafana_k6_project" "test_project_limits" {
22 name = " Terraform Project Test Limits"
33}
44
5+ resource "grafana_k6_project_limits" "test_limits" {
6+ project_id = grafana_k6_project. test_project_limits . id
7+ vuh_max_per_month = 10000
8+ vu_max_per_test = 10000
9+ vu_browser_max_per_test = 1000
10+ duration_max_per_test = 3600
11+ }
12+
513data "grafana_k6_project_limits" "from_project_id" {
614 project_id = grafana_k6_project. test_project_limits . id
715}
You can’t perform that action at this time.
0 commit comments