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 1313# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1414# See the License for the specific language governing permissions and
1515
16+ import random
17+ import string
18+
1619from googleapiclient import discovery
1720
1821import snippets
2225LOCATION = 'global'
2326
2427# 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 ))
2630
2731# 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 ))
2934
3035# Your Google Cloud Platform CryptoKeyVersion name
3136VERSION = 1
You can’t perform that action at this time.
0 commit comments