github.com/niedbalski/juju@v0.0.0-20190215020005-8ff100488e47/testcharms/charm-repo/quantal/appconfig/config.yaml (about) 1 options: 2 strdefault: 3 default: "charm default" 4 description: A string setting for charm with some default value. 5 type: string 6 strnodefault: 7 description: A string settings for charm with no default value. 8 type: string 9 stroverwrite: 10 default: "overwrite me" 11 description: A string settings for charm with some default value to be overwritten at application deploy. 12 type: string 13 intdefault: 14 default: 42 15 description: An int setting for charm with some default value. 16 type: int 17 intnodefault: 18 description: An int settings for charm with no default value. 19 type: int 20 intoverwrite: 21 default: 111 22 description: An int settings for charm with some default value to be overwritten at application deploy. 23 type: int 24 floatdefault: 25 default: 4.2 26 description: A float setting for charm with some default value. 27 type: float 28 floatnodefault: 29 description: A float settings for charm with no default value. 30 type: float 31 floatoverwrite: 32 default: 11.1 33 description: A float settings for charm with some default value to be overwritten at application deploy. 34 type: float 35 booleandefault: 36 default: true 37 description: A boolean setting for charm with some default value. 38 type: boolean 39 booleannodefault: 40 description: A boolean settings for charm with no default value. 41 type: boolean 42 booleanoverwrite: 43 default: true 44 description: A boolean settings for charm with some default value to be overwritten at application deploy. 45 type: boolean