22 lines
538 B
Python
22 lines
538 B
Python
defaults = {
|
|
'apt': {
|
|
'packages': {
|
|
'apt-transport-https': {},
|
|
'ca-certificates': {},
|
|
'gnupg': {},
|
|
'google-cloud-sdk': {},
|
|
'python3-crcmod': {},
|
|
},
|
|
'sources': {
|
|
'google-cloud': {
|
|
'url': 'https://packages.cloud.google.com/apt/',
|
|
'suites': {
|
|
'cloud-sdk',
|
|
},
|
|
'components': {
|
|
'main',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|