@@ -40,6 +40,8 @@ resource "google_firebase_android_app" "basic" {
40
40
project = "my-project-name"
41
41
display_name = "Display Name Basic"
42
42
package_name = ""
43
+ sha1_hashes = ["2145bdf698b8715039bd0e83f2069bed435ac21c"]
44
+ sha256_hashes = ["2145bdf698b8715039bd0e83f2069bed435ac21ca1b2c3d4e5f6123456789abc"]
43
45
}
44
46
```
45
47
@@ -50,7 +52,7 @@ The following arguments are supported:
50
52
51
53
* ` display_name ` -
52
54
(Required)
53
- The user-assigned display name of the App .
55
+ The user-assigned display name of the AndroidApp .
54
56
55
57
56
58
- - -
@@ -61,6 +63,14 @@ The following arguments are supported:
61
63
Immutable. The canonical package name of the Android app as would appear in the Google Play
62
64
Developer Console.
63
65
66
+ * ` sha1_hashes ` -
67
+ (Optional)
68
+ The SHA1 certificate hashes for the AndroidApp.
69
+
70
+ * ` sha256_hashes ` -
71
+ (Optional)
72
+ The SHA256 certificate hashes for the AndroidApp.
73
+
64
74
* ` deletion_policy ` -
65
75
(Optional)
66
76
(Optional) Set to ` ABANDON ` to allow the AndroidApp to be untracked from terraform state
@@ -78,13 +88,17 @@ In addition to the arguments listed above, the following computed attributes are
78
88
* ` id ` - an identifier for the resource with format ` {{name}} `
79
89
80
90
* ` name ` -
81
- The fully qualified resource name of the App , for example:
91
+ The fully qualified resource name of the AndroidApp , for example:
82
92
projects/projectId/androidApps/appId
83
93
84
94
* ` app_id ` -
85
- The globally unique, Firebase-assigned identifier of the App .
95
+ The globally unique, Firebase-assigned identifier of the AndroidApp .
86
96
This identifier should be treated as an opaque token, as the data format is not specified.
87
97
98
+ * ` etag ` -
99
+ This checksum is computed by the server based on the value of other fields, and it may be sent
100
+ with update requests to ensure the client has an up-to-date value before proceeding.
101
+
88
102
89
103
## Timeouts
90
104
0 commit comments