File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 13
13
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
14
# See the License for the specific language governing permissions and
15
15
16
+ import random
17
+ import string
18
+
16
19
from googleapiclient import discovery
17
20
18
21
import snippets
22
25
LOCATION = 'global'
23
26
24
27
# Your Google Cloud Platform KeyRing name
25
- KEYRING = 'sample-keyring-43'
28
+ KEYRING = '' .join (
29
+ random .choice (string .ascii_lowercase + string .digits ) for _ in range (12 ))
26
30
27
31
# Your Google Cloud Platform CryptoKey name
28
- CRYPTOKEY = 'sample-key-43'
32
+ CRYPTOKEY = '' .join (
33
+ random .choice (string .ascii_lowercase + string .digits ) for _ in range (12 ))
29
34
30
35
# Your Google Cloud Platform CryptoKeyVersion name
31
36
VERSION = 1
You can’t perform that action at this time.
0 commit comments