init
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: google_logging_billing_account_exclusion
|
||||
# key: goog_logging_billing_account_exclusion
|
||||
# --
|
||||
|
||||
resource "google_logging_billing_account_exclusion" "${1:name}" {
|
||||
name = "${2:name}"
|
||||
billing_account = "${3:billing_account}"
|
||||
filter = "${4:filter}"
|
||||
}
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: google_logging_billing_account_sink
|
||||
# key: goog_logging_billing_account_sink
|
||||
# --
|
||||
|
||||
resource "google_logging_billing_account_sink" "${1:name}" {
|
||||
name = "${2:name}"
|
||||
billing_account = "${3:billing_account}"
|
||||
destination = "${4:destination}"
|
||||
}
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: google_logging_folder_exclusion
|
||||
# key: goog_logging_folder_exclusion
|
||||
# --
|
||||
|
||||
resource "google_logging_folder_exclusion" "${1:name}" {
|
||||
name = "${2:name}"
|
||||
folder = "${3:folder}"
|
||||
filter = "${4:filter}"
|
||||
}
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: google_logging_folder_sink
|
||||
# key: goog_logging_folder_sink
|
||||
# --
|
||||
|
||||
resource "google_logging_folder_sink" "${1:name}" {
|
||||
name = "${2:name}"
|
||||
folder = "${3:folder}"
|
||||
destination = "${4:destination}"
|
||||
}
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: google_logging_organization_exclusion
|
||||
# key: goog_logging_organization_exclusion
|
||||
# --
|
||||
|
||||
resource "google_logging_organization_exclusion" "${1:name}" {
|
||||
name = "${2:name}"
|
||||
org_id = "${3:org_id}"
|
||||
filter = "${4:filter}"
|
||||
}
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: google_logging_organization_sink
|
||||
# key: goog_logging_organization_sink
|
||||
# --
|
||||
|
||||
resource "google_logging_organization_sink" "${1:name}" {
|
||||
name = "${2:name}"
|
||||
org_id = "${3:org_id}"
|
||||
destination = "${4:destination}"
|
||||
}
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: google_logging_project_exclusion
|
||||
# key: goog_logging_project_exclusion
|
||||
# --
|
||||
|
||||
resource "google_logging_project_exclusion" "${1:name}" {
|
||||
name = "${2:name}"
|
||||
filter = "${3:filter}"
|
||||
}
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: google_logging_project_sink
|
||||
# key: goog_logging_project_sink
|
||||
# --
|
||||
|
||||
resource "google_logging_project_sink" "${1:name}" {
|
||||
name = "${2:name}"
|
||||
destination = "${3:destination}"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user