How would I configure Blink integration from configuration.yaml or a script?

I currently have a home assistant using the ghcr.io/home-assistant/home-assistant:stable image. I then use a configuration.yaml to config the instance and mount that using a docker mount.

For my alexa integration I have the following…

alexa:
  smart_home:
    locale: en-US
    endpoint: https://api.amazonalexa.com/v3/events
    client_id: ...
    client_secret: ...

This works great so now I would like to do something like this for the Blink integration. I have looked here but this is done manually through the UI. How would I do this same thing with the configuration.yaml for Blink?

Like I see this in the core.config_entries but how do I make that into something I can copy up to the image and not check in sensitive data (like use secrets for the password etc)

       {                                                             
        "entry_id": "1b4363e7c5609a26304abdfd68d2b4c0",             
        "version": 3,                                               
        "domain": "blink",                                          
        "title": "blink",                                           
        "data": {                                                   
          "username": "...",                    
          "password": "...",                            
          "device_id": "Home Assistant",                            
          "uid": "BlinkCamera_...",
          "token": "...",    
          "host": "u053.immedia-semi.com",                          
          "region_id": "u053",                                      
          "client_id": ...,   
          "account_id": ...                                
        },                                                          
        "options": {                                                
          "scan_interval": 300                                      
        },                                                          
        "pref_disable_new_entities": false,                         
        "pref_disable_polling": false,                              
        "source": "user",                                           
        "unique_id": "...email...",                     
        "disabled_by": null                                         
      }