Skip to content

Commit ef1581a

Browse files
Add initial monitoring SLO resource (#3363) (#1953)
* initial SLO resource * a space * indent * whitespace * add comment * sidebar * rename test fun * add validation, required * fmt * fix format code * change rolling period to int days * doc Signed-off-by: Modular Magician <[email protected]>
1 parent 45e3ecc commit ef1581a

File tree

8 files changed

+1270
-2
lines changed

8 files changed

+1270
-2
lines changed

.changelog/3363.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:new-resource
2+
google_monitoring_slo
3+
```

google-beta/provider.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -598,9 +598,9 @@ func Provider() terraform.ResourceProvider {
598598
return provider
599599
}
600600

601-
// Generated resources: 143
601+
// Generated resources: 144
602602
// Generated IAM resources: 54
603-
// Total generated resources: 197
603+
// Total generated resources: 198
604604
func ResourceMap() map[string]*schema.Resource {
605605
resourceMap, _ := ResourceMapWithErrors()
606606
return resourceMap
@@ -766,6 +766,7 @@ func ResourceMapWithErrors() (map[string]*schema.Resource, error) {
766766
"google_monitoring_group": resourceMonitoringGroup(),
767767
"google_monitoring_notification_channel": resourceMonitoringNotificationChannel(),
768768
"google_monitoring_custom_service": resourceMonitoringService(),
769+
"google_monitoring_slo": resourceMonitoringSlo(),
769770
"google_monitoring_uptime_check_config": resourceMonitoringUptimeCheckConfig(),
770771
"google_os_login_ssh_public_key": resourceOSLoginSSHPublicKey(),
771772
"google_pubsub_topic": resourcePubsubTopic(),

0 commit comments

Comments
 (0)