index.html 250 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665136661366713668136691367013671136721367313674136751367613677136781367913680136811368213683136841368513686136871368813689136901369113692136931369413695136961369713698136991370013701137021370313704137051370613707137081370913710137111371213713137141371513716137171371813719137201372113722137231372413725137261372713728137291373013731137321373313734137351373613737137381373913740137411374213743137441374513746137471374813749137501375113752137531375413755137561375713758137591376013761137621376313764137651376613767137681376913770137711377213773137741377513776137771377813779137801378113782137831378413785137861378713788137891379013791137921379313794137951379613797137981379913800138011380213803138041380513806138071380813809138101381113812138131381413815138161381713818138191382013821138221382313824138251382613827138281382913830138311383213833138341383513836138371383813839138401384113842138431384413845138461384713848138491385013851138521385313854138551385613857138581385913860138611386213863138641386513866138671386813869138701387113872138731387413875138761387713878138791388013881138821388313884138851388613887138881388913890138911389213893138941389513896138971389813899139001390113902139031390413905139061390713908139091391013911139121391313914139151391613917139181391913920139211392213923139241392513926139271392813929139301393113932139331393413935139361393713938139391394013941139421394313944139451394613947139481394913950139511395213953139541395513956139571395813959139601396113962139631396413965139661396713968139691397013971139721397313974139751397613977139781397913980139811398213983139841398513986139871398813989139901399113992139931399413995139961399713998139991400014001140021400314004140051400614007140081400914010140111401214013140141401514016140171401814019140201402114022140231402414025140261402714028140291403014031140321403314034140351403614037140381403914040140411404214043140441404514046140471404814049140501405114052140531405414055140561405714058140591406014061140621406314064140651406614067140681406914070140711407214073140741407514076140771407814079140801408114082140831408414085140861408714088140891409014091140921409314094140951409614097140981409914100141011410214103141041410514106141071410814109141101411114112141131411414115141161411714118141191412014121141221412314124141251412614127141281412914130141311413214133141341413514136141371413814139141401414114142141431414414145141461414714148141491415014151141521415314154141551415614157141581415914160141611416214163141641416514166141671416814169141701417114172141731417414175141761417714178141791418014181141821418314184141851418614187141881418914190141911419214193141941419514196141971419814199142001420114202142031420414205142061420714208142091421014211142121421314214142151421614217142181421914220142211422214223142241422514226142271422814229142301423114232142331423414235142361423714238142391424014241142421424314244142451424614247142481424914250142511425214253142541425514256
  1. <!doctype html>
  2. <html lang="en" class="no-js">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1">
  6. <link rel="prev" href="../generator/mfa/">
  7. <link rel="next" href="../controller-options/">
  8. <link rel="icon" href="../../pictures/eso-round-logo.svg">
  9. <meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.6.14">
  10. <title>API specification - External Secrets Operator</title>
  11. <link rel="stylesheet" href="../../assets/stylesheets/main.342714a4.min.css">
  12. <link rel="stylesheet" href="../../assets/stylesheets/palette.06af60db.min.css">
  13. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  14. <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,700,700i%7CRoboto+Mono:400,400i,700,700i&display=fallback">
  15. <style>:root{--md-text-font:"Roboto";--md-code-font:"Roboto Mono"}</style>
  16. <script>__md_scope=new URL("../..",location),__md_hash=e=>[...e].reduce(((e,_)=>(e<<5)-e+_.charCodeAt(0)),0),__md_get=(e,_=localStorage,t=__md_scope)=>JSON.parse(_.getItem(t.pathname+"."+e)),__md_set=(e,_,t=localStorage,a=__md_scope)=>{try{t.setItem(a.pathname+"."+e,JSON.stringify(_))}catch(e){}}</script>
  17. <script id="__analytics">function __md_analytics(){function e(){dataLayer.push(arguments)}window.dataLayer=window.dataLayer||[],e("js",new Date),e("config","G-QP38TD8K7V"),document.addEventListener("DOMContentLoaded",(function(){document.forms.search&&document.forms.search.query.addEventListener("blur",(function(){this.value&&e("event","search",{search_term:this.value})}));document$.subscribe((function(){var t=document.forms.feedback;if(void 0!==t)for(var a of t.querySelectorAll("[type=submit]"))a.addEventListener("click",(function(a){a.preventDefault();var n=document.location.pathname,d=this.getAttribute("data-md-value");e("event","feedback",{page:n,data:d}),t.firstElementChild.disabled=!0;var r=t.querySelector(".md-feedback__note [data-md-value='"+d+"']");r&&(r.hidden=!1)})),t.hidden=!1})),location$.subscribe((function(t){e("config","G-QP38TD8K7V",{page_path:t.pathname})}))}));var t=document.createElement("script");t.async=!0,t.src="https://www.googletagmanager.com/gtag/js?id=G-QP38TD8K7V",document.getElementById("__analytics").insertAdjacentElement("afterEnd",t)}</script>
  18. <script>"undefined"!=typeof __md_analytics&&__md_analytics()</script>
  19. </head>
  20. <body dir="ltr" data-md-color-scheme="default" data-md-color-primary="indigo" data-md-color-accent="indigo">
  21. <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off">
  22. <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off">
  23. <label class="md-overlay" for="__drawer"></label>
  24. <div data-md-component="skip">
  25. </div>
  26. <div data-md-component="announce">
  27. </div>
  28. <div data-md-color-scheme="default" data-md-component="outdated" hidden>
  29. <aside class="md-banner md-banner--warning">
  30. <div class="md-banner__inner md-grid md-typeset">
  31. You're not viewing the latest version.
  32. <a href="../../..">
  33. <strong>Click here to go to latest.</strong>
  34. </a>
  35. </div>
  36. <script>var el=document.querySelector("[data-md-component=outdated]"),base=new URL("../.."),outdated=__md_get("__outdated",sessionStorage,base);!0===outdated&&el&&(el.hidden=!1)</script>
  37. </aside>
  38. </div>
  39. <header class="md-header" data-md-component="header">
  40. <nav class="md-header__inner md-grid" aria-label="Header">
  41. <a href="../.." title="External Secrets Operator" class="md-header__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  42. <img src="../../pictures/eso-round-logo.svg" alt="logo">
  43. </a>
  44. <label class="md-header__button md-icon" for="__drawer">
  45. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6h18v2H3zm0 5h18v2H3zm0 5h18v2H3z"/></svg>
  46. </label>
  47. <div class="md-header__title" data-md-component="header-title">
  48. <div class="md-header__ellipsis">
  49. <div class="md-header__topic">
  50. <span class="md-ellipsis">
  51. External Secrets Operator
  52. </span>
  53. </div>
  54. <div class="md-header__topic" data-md-component="header-topic">
  55. <span class="md-ellipsis">
  56. API specification
  57. </span>
  58. </div>
  59. </div>
  60. </div>
  61. <form class="md-header__option" data-md-component="palette">
  62. <input class="md-option" data-md-color-media="(prefers-color-scheme: light)" data-md-color-scheme="default" data-md-color-primary="indigo" data-md-color-accent="indigo" aria-label="Switch to dark mode" type="radio" name="__palette" id="__palette_0">
  63. <label class="md-header__button md-icon" title="Switch to dark mode" for="__palette_1" hidden>
  64. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4m0 10a6 6 0 0 1-6-6 6 6 0 0 1 6-6 6 6 0 0 1 6 6 6 6 0 0 1-6 6m8-9.31V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12z"/></svg>
  65. </label>
  66. <input class="md-option" data-md-color-media="(prefers-color-scheme: dark)" data-md-color-scheme="slate" data-md-color-primary="indigo" data-md-color-accent="indigo" aria-label="Switch to light mode" type="radio" name="__palette" id="__palette_1">
  67. <label class="md-header__button md-icon" title="Switch to light mode" for="__palette_0" hidden>
  68. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18c-.89 0-1.74-.2-2.5-.55C11.56 16.5 13 14.42 13 12s-1.44-4.5-3.5-5.45C10.26 6.2 11.11 6 12 6a6 6 0 0 1 6 6 6 6 0 0 1-6 6m8-9.31V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12z"/></svg>
  69. </label>
  70. </form>
  71. <script>var palette=__md_get("__palette");if(palette&&palette.color){if("(prefers-color-scheme)"===palette.color.media){var media=matchMedia("(prefers-color-scheme: light)"),input=document.querySelector(media.matches?"[data-md-color-media='(prefers-color-scheme: light)']":"[data-md-color-media='(prefers-color-scheme: dark)']");palette.color.media=input.getAttribute("data-md-color-media"),palette.color.scheme=input.getAttribute("data-md-color-scheme"),palette.color.primary=input.getAttribute("data-md-color-primary"),palette.color.accent=input.getAttribute("data-md-color-accent")}for(var[key,value]of Object.entries(palette.color))document.body.setAttribute("data-md-color-"+key,value)}</script>
  72. <label class="md-header__button md-icon" for="__search">
  73. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.52 6.52 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5"/></svg>
  74. </label>
  75. <div class="md-search" data-md-component="search" role="dialog">
  76. <label class="md-search__overlay" for="__search"></label>
  77. <div class="md-search__inner" role="search">
  78. <form class="md-search__form" name="search">
  79. <input type="text" class="md-search__input" name="query" aria-label="Search" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" data-md-component="search-query" required>
  80. <label class="md-search__icon md-icon" for="__search">
  81. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.52 6.52 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5"/></svg>
  82. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11v2H8l5.5 5.5-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5 8 11z"/></svg>
  83. </label>
  84. <nav class="md-search__options" aria-label="Search">
  85. <button type="reset" class="md-search__icon md-icon" title="Clear" aria-label="Clear" tabindex="-1">
  86. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg>
  87. </button>
  88. </nav>
  89. </form>
  90. <div class="md-search__output">
  91. <div class="md-search__scrollwrap" tabindex="0" data-md-scrollfix>
  92. <div class="md-search-result" data-md-component="search-result">
  93. <div class="md-search-result__meta">
  94. Initializing search
  95. </div>
  96. <ol class="md-search-result__list" role="presentation"></ol>
  97. </div>
  98. </div>
  99. </div>
  100. </div>
  101. </div>
  102. <div class="md-header__source">
  103. <a href="https://github.com/external-secrets/external-secrets" title="Go to repository" class="md-source" data-md-component="source">
  104. <div class="md-source__icon md-icon">
  105. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81"/></svg>
  106. </div>
  107. <div class="md-source__repository">
  108. External Secrets Operator
  109. </div>
  110. </a>
  111. </div>
  112. </nav>
  113. </header>
  114. <div class="md-container" data-md-component="container">
  115. <nav class="md-tabs" aria-label="Tabs" data-md-component="tabs">
  116. <div class="md-grid">
  117. <ul class="md-tabs__list">
  118. <li class="md-tabs__item">
  119. <a href="../.." class="md-tabs__link">
  120. Introduction
  121. </a>
  122. </li>
  123. <li class="md-tabs__item md-tabs__item--active">
  124. <a href="../components/" class="md-tabs__link">
  125. API
  126. </a>
  127. </li>
  128. <li class="md-tabs__item">
  129. <a href="../../guides/introduction/" class="md-tabs__link">
  130. Guides
  131. </a>
  132. </li>
  133. <li class="md-tabs__item">
  134. <a href="../../provider/aws-secrets-manager/" class="md-tabs__link">
  135. Provider
  136. </a>
  137. </li>
  138. <li class="md-tabs__item">
  139. <a href="../../examples/gitops-using-fluxcd/" class="md-tabs__link">
  140. Examples
  141. </a>
  142. </li>
  143. <li class="md-tabs__item">
  144. <a href="../../contributing/devguide/" class="md-tabs__link">
  145. Community
  146. </a>
  147. </li>
  148. </ul>
  149. </div>
  150. </nav>
  151. <main class="md-main" data-md-component="main">
  152. <div class="md-main__inner md-grid">
  153. <div class="md-sidebar md-sidebar--primary" data-md-component="sidebar" data-md-type="navigation" >
  154. <div class="md-sidebar__scrollwrap">
  155. <div class="md-sidebar__inner">
  156. <nav class="md-nav md-nav--primary md-nav--lifted" aria-label="Navigation" data-md-level="0">
  157. <label class="md-nav__title" for="__drawer">
  158. <a href="../.." title="External Secrets Operator" class="md-nav__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  159. <img src="../../pictures/eso-round-logo.svg" alt="logo">
  160. </a>
  161. External Secrets Operator
  162. </label>
  163. <div class="md-nav__source">
  164. <a href="https://github.com/external-secrets/external-secrets" title="Go to repository" class="md-source" data-md-component="source">
  165. <div class="md-source__icon md-icon">
  166. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81"/></svg>
  167. </div>
  168. <div class="md-source__repository">
  169. External Secrets Operator
  170. </div>
  171. </a>
  172. </div>
  173. <ul class="md-nav__list" data-md-scrollfix>
  174. <li class="md-nav__item md-nav__item--nested">
  175. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_1" >
  176. <div class="md-nav__link md-nav__container">
  177. <a href="../.." class="md-nav__link ">
  178. <span class="md-ellipsis">
  179. Introduction
  180. </span>
  181. </a>
  182. <label class="md-nav__link " for="__nav_1" id="__nav_1_label" tabindex="0">
  183. <span class="md-nav__icon md-icon"></span>
  184. </label>
  185. </div>
  186. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_1_label" aria-expanded="false">
  187. <label class="md-nav__title" for="__nav_1">
  188. <span class="md-nav__icon md-icon"></span>
  189. Introduction
  190. </label>
  191. <ul class="md-nav__list" data-md-scrollfix>
  192. <li class="md-nav__item">
  193. <a href="../../introduction/overview/" class="md-nav__link">
  194. <span class="md-ellipsis">
  195. Overview
  196. </span>
  197. </a>
  198. </li>
  199. <li class="md-nav__item">
  200. <a href="../../introduction/glossary/" class="md-nav__link">
  201. <span class="md-ellipsis">
  202. Glossary
  203. </span>
  204. </a>
  205. </li>
  206. <li class="md-nav__item">
  207. <a href="../../introduction/prerequisites/" class="md-nav__link">
  208. <span class="md-ellipsis">
  209. Prerequisites
  210. </span>
  211. </a>
  212. </li>
  213. <li class="md-nav__item">
  214. <a href="../../introduction/getting-started/" class="md-nav__link">
  215. <span class="md-ellipsis">
  216. Getting started
  217. </span>
  218. </a>
  219. </li>
  220. <li class="md-nav__item">
  221. <a href="../../introduction/faq/" class="md-nav__link">
  222. <span class="md-ellipsis">
  223. FAQ
  224. </span>
  225. </a>
  226. </li>
  227. <li class="md-nav__item">
  228. <a href="../../introduction/stability-support/" class="md-nav__link">
  229. <span class="md-ellipsis">
  230. Stability and Support
  231. </span>
  232. </a>
  233. </li>
  234. <li class="md-nav__item">
  235. <a href="../../introduction/deprecation-policy/" class="md-nav__link">
  236. <span class="md-ellipsis">
  237. Deprecation Policy
  238. </span>
  239. </a>
  240. </li>
  241. </ul>
  242. </nav>
  243. </li>
  244. <li class="md-nav__item md-nav__item--active md-nav__item--section md-nav__item--nested">
  245. <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2" checked>
  246. <label class="md-nav__link" for="__nav_2" id="__nav_2_label" tabindex="">
  247. <span class="md-ellipsis">
  248. API
  249. </span>
  250. <span class="md-nav__icon md-icon"></span>
  251. </label>
  252. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_2_label" aria-expanded="true">
  253. <label class="md-nav__title" for="__nav_2">
  254. <span class="md-nav__icon md-icon"></span>
  255. API
  256. </label>
  257. <ul class="md-nav__list" data-md-scrollfix>
  258. <li class="md-nav__item">
  259. <a href="../components/" class="md-nav__link">
  260. <span class="md-ellipsis">
  261. Components
  262. </span>
  263. </a>
  264. </li>
  265. <li class="md-nav__item md-nav__item--nested">
  266. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_2" >
  267. <label class="md-nav__link" for="__nav_2_2" id="__nav_2_2_label" tabindex="0">
  268. <span class="md-ellipsis">
  269. Core Resources
  270. </span>
  271. <span class="md-nav__icon md-icon"></span>
  272. </label>
  273. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_2_label" aria-expanded="false">
  274. <label class="md-nav__title" for="__nav_2_2">
  275. <span class="md-nav__icon md-icon"></span>
  276. Core Resources
  277. </label>
  278. <ul class="md-nav__list" data-md-scrollfix>
  279. <li class="md-nav__item">
  280. <a href="../externalsecret/" class="md-nav__link">
  281. <span class="md-ellipsis">
  282. ExternalSecret
  283. </span>
  284. </a>
  285. </li>
  286. <li class="md-nav__item">
  287. <a href="../secretstore/" class="md-nav__link">
  288. <span class="md-ellipsis">
  289. SecretStore
  290. </span>
  291. </a>
  292. </li>
  293. <li class="md-nav__item">
  294. <a href="../clustersecretstore/" class="md-nav__link">
  295. <span class="md-ellipsis">
  296. ClusterSecretStore
  297. </span>
  298. </a>
  299. </li>
  300. <li class="md-nav__item">
  301. <a href="../clusterexternalsecret/" class="md-nav__link">
  302. <span class="md-ellipsis">
  303. ClusterExternalSecret
  304. </span>
  305. </a>
  306. </li>
  307. <li class="md-nav__item">
  308. <a href="../clusterpushsecret/" class="md-nav__link">
  309. <span class="md-ellipsis">
  310. ClusterPushSecret
  311. </span>
  312. </a>
  313. </li>
  314. <li class="md-nav__item">
  315. <a href="../pushsecret/" class="md-nav__link">
  316. <span class="md-ellipsis">
  317. PushSecret
  318. </span>
  319. </a>
  320. </li>
  321. </ul>
  322. </nav>
  323. </li>
  324. <li class="md-nav__item md-nav__item--nested">
  325. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_3" >
  326. <div class="md-nav__link md-nav__container">
  327. <a href="../generator/" class="md-nav__link ">
  328. <span class="md-ellipsis">
  329. Generators
  330. </span>
  331. </a>
  332. <label class="md-nav__link " for="__nav_2_3" id="__nav_2_3_label" tabindex="0">
  333. <span class="md-nav__icon md-icon"></span>
  334. </label>
  335. </div>
  336. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_3_label" aria-expanded="false">
  337. <label class="md-nav__title" for="__nav_2_3">
  338. <span class="md-nav__icon md-icon"></span>
  339. Generators
  340. </label>
  341. <ul class="md-nav__list" data-md-scrollfix>
  342. <li class="md-nav__item">
  343. <a href="../generator/acr/" class="md-nav__link">
  344. <span class="md-ellipsis">
  345. Azure Container Registry
  346. </span>
  347. </a>
  348. </li>
  349. <li class="md-nav__item">
  350. <a href="../generator/ecr/" class="md-nav__link">
  351. <span class="md-ellipsis">
  352. AWS Elastic Container Registry
  353. </span>
  354. </a>
  355. </li>
  356. <li class="md-nav__item">
  357. <a href="../generator/sts/" class="md-nav__link">
  358. <span class="md-ellipsis">
  359. AWS STS Session Token
  360. </span>
  361. </a>
  362. </li>
  363. <li class="md-nav__item">
  364. <a href="../generator/cluster/" class="md-nav__link">
  365. <span class="md-ellipsis">
  366. Cluster Generator
  367. </span>
  368. </a>
  369. </li>
  370. <li class="md-nav__item">
  371. <a href="../generator/gcr/" class="md-nav__link">
  372. <span class="md-ellipsis">
  373. Google Container Registry
  374. </span>
  375. </a>
  376. </li>
  377. <li class="md-nav__item">
  378. <a href="../generator/quay/" class="md-nav__link">
  379. <span class="md-ellipsis">
  380. Quay
  381. </span>
  382. </a>
  383. </li>
  384. <li class="md-nav__item">
  385. <a href="../generator/vault/" class="md-nav__link">
  386. <span class="md-ellipsis">
  387. Vault Dynamic Secret
  388. </span>
  389. </a>
  390. </li>
  391. <li class="md-nav__item">
  392. <a href="../generator/password/" class="md-nav__link">
  393. <span class="md-ellipsis">
  394. Password
  395. </span>
  396. </a>
  397. </li>
  398. <li class="md-nav__item">
  399. <a href="../generator/fake/" class="md-nav__link">
  400. <span class="md-ellipsis">
  401. Fake
  402. </span>
  403. </a>
  404. </li>
  405. <li class="md-nav__item">
  406. <a href="../generator/webhook/" class="md-nav__link">
  407. <span class="md-ellipsis">
  408. Webhook
  409. </span>
  410. </a>
  411. </li>
  412. <li class="md-nav__item">
  413. <a href="../generator/github/" class="md-nav__link">
  414. <span class="md-ellipsis">
  415. Github
  416. </span>
  417. </a>
  418. </li>
  419. <li class="md-nav__item">
  420. <a href="../generator/uuid/" class="md-nav__link">
  421. <span class="md-ellipsis">
  422. UUID
  423. </span>
  424. </a>
  425. </li>
  426. <li class="md-nav__item">
  427. <a href="../generator/mfa/" class="md-nav__link">
  428. <span class="md-ellipsis">
  429. MFA
  430. </span>
  431. </a>
  432. </li>
  433. </ul>
  434. </nav>
  435. </li>
  436. <li class="md-nav__item md-nav__item--active md-nav__item--nested">
  437. <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4" checked>
  438. <label class="md-nav__link" for="__nav_2_4" id="__nav_2_4_label" tabindex="0">
  439. <span class="md-ellipsis">
  440. Reference Docs
  441. </span>
  442. <span class="md-nav__icon md-icon"></span>
  443. </label>
  444. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_4_label" aria-expanded="true">
  445. <label class="md-nav__title" for="__nav_2_4">
  446. <span class="md-nav__icon md-icon"></span>
  447. Reference Docs
  448. </label>
  449. <ul class="md-nav__list" data-md-scrollfix>
  450. <li class="md-nav__item md-nav__item--active">
  451. <input class="md-nav__toggle md-toggle" type="checkbox" id="__toc">
  452. <a href="./" class="md-nav__link md-nav__link--active">
  453. <span class="md-ellipsis">
  454. API specification
  455. </span>
  456. </a>
  457. </li>
  458. <li class="md-nav__item">
  459. <a href="../controller-options/" class="md-nav__link">
  460. <span class="md-ellipsis">
  461. Controller Options
  462. </span>
  463. </a>
  464. </li>
  465. <li class="md-nav__item">
  466. <a href="../metrics/" class="md-nav__link">
  467. <span class="md-ellipsis">
  468. Metrics
  469. </span>
  470. </a>
  471. </li>
  472. </ul>
  473. </nav>
  474. </li>
  475. </ul>
  476. </nav>
  477. </li>
  478. <li class="md-nav__item md-nav__item--nested">
  479. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3" >
  480. <label class="md-nav__link" for="__nav_3" id="__nav_3_label" tabindex="0">
  481. <span class="md-ellipsis">
  482. Guides
  483. </span>
  484. <span class="md-nav__icon md-icon"></span>
  485. </label>
  486. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_3_label" aria-expanded="false">
  487. <label class="md-nav__title" for="__nav_3">
  488. <span class="md-nav__icon md-icon"></span>
  489. Guides
  490. </label>
  491. <ul class="md-nav__list" data-md-scrollfix>
  492. <li class="md-nav__item">
  493. <a href="../../guides/introduction/" class="md-nav__link">
  494. <span class="md-ellipsis">
  495. Introduction
  496. </span>
  497. </a>
  498. </li>
  499. <li class="md-nav__item md-nav__item--nested">
  500. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_2" >
  501. <label class="md-nav__link" for="__nav_3_2" id="__nav_3_2_label" tabindex="0">
  502. <span class="md-ellipsis">
  503. External Secrets
  504. </span>
  505. <span class="md-nav__icon md-icon"></span>
  506. </label>
  507. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_2_label" aria-expanded="false">
  508. <label class="md-nav__title" for="__nav_3_2">
  509. <span class="md-nav__icon md-icon"></span>
  510. External Secrets
  511. </label>
  512. <ul class="md-nav__list" data-md-scrollfix>
  513. <li class="md-nav__item">
  514. <a href="../../guides/all-keys-one-secret/" class="md-nav__link">
  515. <span class="md-ellipsis">
  516. Extract structured data
  517. </span>
  518. </a>
  519. </li>
  520. <li class="md-nav__item">
  521. <a href="../../guides/getallsecrets/" class="md-nav__link">
  522. <span class="md-ellipsis">
  523. Find Secrets by Name or Metadata
  524. </span>
  525. </a>
  526. </li>
  527. <li class="md-nav__item">
  528. <a href="../../guides/datafrom-rewrite/" class="md-nav__link">
  529. <span class="md-ellipsis">
  530. Rewriting Keys
  531. </span>
  532. </a>
  533. </li>
  534. <li class="md-nav__item md-nav__item--nested">
  535. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_2_4" >
  536. <label class="md-nav__link" for="__nav_3_2_4" id="__nav_3_2_4_label" tabindex="0">
  537. <span class="md-ellipsis">
  538. Advanced Templating
  539. </span>
  540. <span class="md-nav__icon md-icon"></span>
  541. </label>
  542. <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_3_2_4_label" aria-expanded="false">
  543. <label class="md-nav__title" for="__nav_3_2_4">
  544. <span class="md-nav__icon md-icon"></span>
  545. Advanced Templating
  546. </label>
  547. <ul class="md-nav__list" data-md-scrollfix>
  548. <li class="md-nav__item">
  549. <a href="../../guides/templating/" class="md-nav__link">
  550. <span class="md-ellipsis">
  551. v2
  552. </span>
  553. </a>
  554. </li>
  555. <li class="md-nav__item">
  556. <a href="../../guides/templating-v1/" class="md-nav__link">
  557. <span class="md-ellipsis">
  558. v1
  559. </span>
  560. </a>
  561. </li>
  562. </ul>
  563. </nav>
  564. </li>
  565. <li class="md-nav__item">
  566. <a href="../../guides/common-k8s-secret-types/" class="md-nav__link">
  567. <span class="md-ellipsis">
  568. Kubernetes Secret Types
  569. </span>
  570. </a>
  571. </li>
  572. <li class="md-nav__item">
  573. <a href="../../guides/ownership-deletion-policy/" class="md-nav__link">
  574. <span class="md-ellipsis">
  575. Lifecycle: ownership & deletion
  576. </span>
  577. </a>
  578. </li>
  579. <li class="md-nav__item">
  580. <a href="../../guides/decoding-strategy/" class="md-nav__link">
  581. <span class="md-ellipsis">
  582. Decoding Strategies
  583. </span>
  584. </a>
  585. </li>
  586. <li class="md-nav__item">
  587. <a href="../../guides/controller-class/" class="md-nav__link">
  588. <span class="md-ellipsis">
  589. Controller Classes
  590. </span>
  591. </a>
  592. </li>
  593. </ul>
  594. </nav>
  595. </li>
  596. <li class="md-nav__item">
  597. <a href="../../guides/generator/" class="md-nav__link">
  598. <span class="md-ellipsis">
  599. Generators
  600. </span>
  601. </a>
  602. </li>
  603. <li class="md-nav__item">
  604. <a href="../../guides/pushsecrets/" class="md-nav__link">
  605. <span class="md-ellipsis">
  606. Push Secrets
  607. </span>
  608. </a>
  609. </li>
  610. <li class="md-nav__item md-nav__item--nested">
  611. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_5" >
  612. <label class="md-nav__link" for="__nav_3_5" id="__nav_3_5_label" tabindex="0">
  613. <span class="md-ellipsis">
  614. Operations
  615. </span>
  616. <span class="md-nav__icon md-icon"></span>
  617. </label>
  618. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_5_label" aria-expanded="false">
  619. <label class="md-nav__title" for="__nav_3_5">
  620. <span class="md-nav__icon md-icon"></span>
  621. Operations
  622. </label>
  623. <ul class="md-nav__list" data-md-scrollfix>
  624. <li class="md-nav__item">
  625. <a href="../../guides/multi-tenancy/" class="md-nav__link">
  626. <span class="md-ellipsis">
  627. Multi Tenancy
  628. </span>
  629. </a>
  630. </li>
  631. <li class="md-nav__item">
  632. <a href="../../guides/security-best-practices/" class="md-nav__link">
  633. <span class="md-ellipsis">
  634. Security Best Practices
  635. </span>
  636. </a>
  637. </li>
  638. <li class="md-nav__item">
  639. <a href="../../guides/threat-model/" class="md-nav__link">
  640. <span class="md-ellipsis">
  641. Threat Model
  642. </span>
  643. </a>
  644. </li>
  645. <li class="md-nav__item">
  646. <a href="../../guides/v1beta1/" class="md-nav__link">
  647. <span class="md-ellipsis">
  648. Upgrading to v1beta1
  649. </span>
  650. </a>
  651. </li>
  652. <li class="md-nav__item">
  653. <a href="../../guides/using-latest-image/" class="md-nav__link">
  654. <span class="md-ellipsis">
  655. Using Latest Image
  656. </span>
  657. </a>
  658. </li>
  659. <li class="md-nav__item">
  660. <a href="../../guides/disable-cluster-features/" class="md-nav__link">
  661. <span class="md-ellipsis">
  662. Disable Cluster Features
  663. </span>
  664. </a>
  665. </li>
  666. </ul>
  667. </nav>
  668. </li>
  669. <li class="md-nav__item md-nav__item--nested">
  670. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_6" >
  671. <label class="md-nav__link" for="__nav_3_6" id="__nav_3_6_label" tabindex="0">
  672. <span class="md-ellipsis">
  673. Tooling
  674. </span>
  675. <span class="md-nav__icon md-icon"></span>
  676. </label>
  677. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_6_label" aria-expanded="false">
  678. <label class="md-nav__title" for="__nav_3_6">
  679. <span class="md-nav__icon md-icon"></span>
  680. Tooling
  681. </label>
  682. <ul class="md-nav__list" data-md-scrollfix>
  683. <li class="md-nav__item">
  684. <a href="../../guides/using-esoctl-tool/" class="md-nav__link">
  685. <span class="md-ellipsis">
  686. Using the esoctl tool
  687. </span>
  688. </a>
  689. </li>
  690. </ul>
  691. </nav>
  692. </li>
  693. </ul>
  694. </nav>
  695. </li>
  696. <li class="md-nav__item md-nav__item--nested">
  697. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_4" >
  698. <label class="md-nav__link" for="__nav_4" id="__nav_4_label" tabindex="0">
  699. <span class="md-ellipsis">
  700. Provider
  701. </span>
  702. <span class="md-nav__icon md-icon"></span>
  703. </label>
  704. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_4_label" aria-expanded="false">
  705. <label class="md-nav__title" for="__nav_4">
  706. <span class="md-nav__icon md-icon"></span>
  707. Provider
  708. </label>
  709. <ul class="md-nav__list" data-md-scrollfix>
  710. <li class="md-nav__item">
  711. <a href="../../provider/aws-secrets-manager/" class="md-nav__link">
  712. <span class="md-ellipsis">
  713. AWS Secrets Manager
  714. </span>
  715. </a>
  716. </li>
  717. <li class="md-nav__item">
  718. <a href="../../provider/aws-parameter-store/" class="md-nav__link">
  719. <span class="md-ellipsis">
  720. AWS Parameter Store
  721. </span>
  722. </a>
  723. </li>
  724. <li class="md-nav__item">
  725. <a href="../../provider/azure-key-vault/" class="md-nav__link">
  726. <span class="md-ellipsis">
  727. Azure Key Vault
  728. </span>
  729. </a>
  730. </li>
  731. <li class="md-nav__item">
  732. <a href="../../provider/beyondtrust/" class="md-nav__link">
  733. <span class="md-ellipsis">
  734. BeyondTrust
  735. </span>
  736. </a>
  737. </li>
  738. <li class="md-nav__item">
  739. <a href="../../provider/bitwarden-secrets-manager/" class="md-nav__link">
  740. <span class="md-ellipsis">
  741. Bitwarden Secrets Manager
  742. </span>
  743. </a>
  744. </li>
  745. <li class="md-nav__item">
  746. <a href="../../provider/chef/" class="md-nav__link">
  747. <span class="md-ellipsis">
  748. Chef
  749. </span>
  750. </a>
  751. </li>
  752. <li class="md-nav__item">
  753. <a href="../../provider/cloudru/" class="md-nav__link">
  754. <span class="md-ellipsis">
  755. Cloud.ru Secret Manager
  756. </span>
  757. </a>
  758. </li>
  759. <li class="md-nav__item">
  760. <a href="../../provider/conjur/" class="md-nav__link">
  761. <span class="md-ellipsis">
  762. CyberArk Conjur
  763. </span>
  764. </a>
  765. </li>
  766. <li class="md-nav__item">
  767. <a href="../../provider/device42/" class="md-nav__link">
  768. <span class="md-ellipsis">
  769. Device42
  770. </span>
  771. </a>
  772. </li>
  773. <li class="md-nav__item">
  774. <a href="../../provider/google-secrets-manager/" class="md-nav__link">
  775. <span class="md-ellipsis">
  776. Google Cloud Secret Manager
  777. </span>
  778. </a>
  779. </li>
  780. <li class="md-nav__item">
  781. <a href="../../provider/hashicorp-vault/" class="md-nav__link">
  782. <span class="md-ellipsis">
  783. HashiCorp Vault
  784. </span>
  785. </a>
  786. </li>
  787. <li class="md-nav__item">
  788. <a href="../../provider/kubernetes/" class="md-nav__link">
  789. <span class="md-ellipsis">
  790. Kubernetes
  791. </span>
  792. </a>
  793. </li>
  794. <li class="md-nav__item">
  795. <a href="../../provider/ibm-secrets-manager/" class="md-nav__link">
  796. <span class="md-ellipsis">
  797. IBM Secrets Manager
  798. </span>
  799. </a>
  800. </li>
  801. <li class="md-nav__item">
  802. <a href="../../provider/akeyless/" class="md-nav__link">
  803. <span class="md-ellipsis">
  804. Akeyless
  805. </span>
  806. </a>
  807. </li>
  808. <li class="md-nav__item">
  809. <a href="../../provider/yandex-certificate-manager/" class="md-nav__link">
  810. <span class="md-ellipsis">
  811. Yandex Certificate Manager
  812. </span>
  813. </a>
  814. </li>
  815. <li class="md-nav__item">
  816. <a href="../../provider/yandex-lockbox/" class="md-nav__link">
  817. <span class="md-ellipsis">
  818. Yandex Lockbox
  819. </span>
  820. </a>
  821. </li>
  822. <li class="md-nav__item">
  823. <a href="../../provider/alibaba/" class="md-nav__link">
  824. <span class="md-ellipsis">
  825. Alibaba Cloud
  826. </span>
  827. </a>
  828. </li>
  829. <li class="md-nav__item">
  830. <a href="../../provider/gitlab-variables/" class="md-nav__link">
  831. <span class="md-ellipsis">
  832. GitLab Variables
  833. </span>
  834. </a>
  835. </li>
  836. <li class="md-nav__item">
  837. <a href="../../provider/github/" class="md-nav__link">
  838. <span class="md-ellipsis">
  839. Github Actions Secrets
  840. </span>
  841. </a>
  842. </li>
  843. <li class="md-nav__item">
  844. <a href="../../provider/oracle-vault/" class="md-nav__link">
  845. <span class="md-ellipsis">
  846. Oracle Vault
  847. </span>
  848. </a>
  849. </li>
  850. <li class="md-nav__item">
  851. <a href="../../provider/1password-automation/" class="md-nav__link">
  852. <span class="md-ellipsis">
  853. 1Password Connect Server
  854. </span>
  855. </a>
  856. </li>
  857. <li class="md-nav__item">
  858. <a href="../../provider/1password-sdk/" class="md-nav__link">
  859. <span class="md-ellipsis">
  860. 1Password SDK
  861. </span>
  862. </a>
  863. </li>
  864. <li class="md-nav__item">
  865. <a href="../../provider/webhook/" class="md-nav__link">
  866. <span class="md-ellipsis">
  867. Webhook
  868. </span>
  869. </a>
  870. </li>
  871. <li class="md-nav__item">
  872. <a href="../../provider/fake/" class="md-nav__link">
  873. <span class="md-ellipsis">
  874. Fake
  875. </span>
  876. </a>
  877. </li>
  878. <li class="md-nav__item">
  879. <a href="../../provider/senhasegura-dsm/" class="md-nav__link">
  880. <span class="md-ellipsis">
  881. senhasegura DevOps Secrets Management (DSM)
  882. </span>
  883. </a>
  884. </li>
  885. <li class="md-nav__item">
  886. <a href="../../provider/doppler/" class="md-nav__link">
  887. <span class="md-ellipsis">
  888. Doppler
  889. </span>
  890. </a>
  891. </li>
  892. <li class="md-nav__item">
  893. <a href="../../provider/keeper-security/" class="md-nav__link">
  894. <span class="md-ellipsis">
  895. Keeper Security
  896. </span>
  897. </a>
  898. </li>
  899. <li class="md-nav__item">
  900. <a href="../../provider/cloak/" class="md-nav__link">
  901. <span class="md-ellipsis">
  902. Cloak End 2 End Encrypted Secrets
  903. </span>
  904. </a>
  905. </li>
  906. <li class="md-nav__item">
  907. <a href="../../provider/scaleway/" class="md-nav__link">
  908. <span class="md-ellipsis">
  909. Scaleway
  910. </span>
  911. </a>
  912. </li>
  913. <li class="md-nav__item">
  914. <a href="../../provider/delinea/" class="md-nav__link">
  915. <span class="md-ellipsis">
  916. Delinea
  917. </span>
  918. </a>
  919. </li>
  920. <li class="md-nav__item">
  921. <a href="../../provider/secretserver/" class="md-nav__link">
  922. <span class="md-ellipsis">
  923. Secret Server
  924. </span>
  925. </a>
  926. </li>
  927. <li class="md-nav__item">
  928. <a href="../../provider/passbolt/" class="md-nav__link">
  929. <span class="md-ellipsis">
  930. Passbolt
  931. </span>
  932. </a>
  933. </li>
  934. <li class="md-nav__item">
  935. <a href="../../provider/pulumi/" class="md-nav__link">
  936. <span class="md-ellipsis">
  937. Pulumi ESC
  938. </span>
  939. </a>
  940. </li>
  941. <li class="md-nav__item">
  942. <a href="../../provider/onboardbase/" class="md-nav__link">
  943. <span class="md-ellipsis">
  944. Onboardbase
  945. </span>
  946. </a>
  947. </li>
  948. <li class="md-nav__item">
  949. <a href="../../provider-passworddepot/" class="md-nav__link">
  950. <span class="md-ellipsis">
  951. Password Depot
  952. </span>
  953. </a>
  954. </li>
  955. <li class="md-nav__item">
  956. <a href="../../provider/fortanix/" class="md-nav__link">
  957. <span class="md-ellipsis">
  958. Fortanix
  959. </span>
  960. </a>
  961. </li>
  962. <li class="md-nav__item">
  963. <a href="../../provider/infisical/" class="md-nav__link">
  964. <span class="md-ellipsis">
  965. Infisical
  966. </span>
  967. </a>
  968. </li>
  969. <li class="md-nav__item">
  970. <a href="../../provider/previder/" class="md-nav__link">
  971. <span class="md-ellipsis">
  972. Previder
  973. </span>
  974. </a>
  975. </li>
  976. <li class="md-nav__item">
  977. <a href="../../provider/openbao/" class="md-nav__link">
  978. <span class="md-ellipsis">
  979. OpenBao
  980. </span>
  981. </a>
  982. </li>
  983. </ul>
  984. </nav>
  985. </li>
  986. <li class="md-nav__item md-nav__item--nested">
  987. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_5" >
  988. <label class="md-nav__link" for="__nav_5" id="__nav_5_label" tabindex="0">
  989. <span class="md-ellipsis">
  990. Examples
  991. </span>
  992. <span class="md-nav__icon md-icon"></span>
  993. </label>
  994. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_5_label" aria-expanded="false">
  995. <label class="md-nav__title" for="__nav_5">
  996. <span class="md-nav__icon md-icon"></span>
  997. Examples
  998. </label>
  999. <ul class="md-nav__list" data-md-scrollfix>
  1000. <li class="md-nav__item">
  1001. <a href="../../examples/gitops-using-fluxcd/" class="md-nav__link">
  1002. <span class="md-ellipsis">
  1003. FluxCD
  1004. </span>
  1005. </a>
  1006. </li>
  1007. <li class="md-nav__item">
  1008. <a href="../../examples/anchore-engine-credentials/" class="md-nav__link">
  1009. <span class="md-ellipsis">
  1010. Anchore Engine
  1011. </span>
  1012. </a>
  1013. </li>
  1014. <li class="md-nav__item">
  1015. <a href="../../examples/jenkins-kubernetes-credentials/" class="md-nav__link">
  1016. <span class="md-ellipsis">
  1017. Jenkins
  1018. </span>
  1019. </a>
  1020. </li>
  1021. <li class="md-nav__item">
  1022. <a href="../../examples/bitwarden/" class="md-nav__link">
  1023. <span class="md-ellipsis">
  1024. Bitwarden
  1025. </span>
  1026. </a>
  1027. </li>
  1028. </ul>
  1029. </nav>
  1030. </li>
  1031. <li class="md-nav__item md-nav__item--nested">
  1032. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6" >
  1033. <label class="md-nav__link" for="__nav_6" id="__nav_6_label" tabindex="0">
  1034. <span class="md-ellipsis">
  1035. Community
  1036. </span>
  1037. <span class="md-nav__icon md-icon"></span>
  1038. </label>
  1039. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_6_label" aria-expanded="false">
  1040. <label class="md-nav__title" for="__nav_6">
  1041. <span class="md-nav__icon md-icon"></span>
  1042. Community
  1043. </label>
  1044. <ul class="md-nav__list" data-md-scrollfix>
  1045. <li class="md-nav__item md-nav__item--nested">
  1046. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_1" >
  1047. <label class="md-nav__link" for="__nav_6_1" id="__nav_6_1_label" tabindex="0">
  1048. <span class="md-ellipsis">
  1049. Contributing
  1050. </span>
  1051. <span class="md-nav__icon md-icon"></span>
  1052. </label>
  1053. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_1_label" aria-expanded="false">
  1054. <label class="md-nav__title" for="__nav_6_1">
  1055. <span class="md-nav__icon md-icon"></span>
  1056. Contributing
  1057. </label>
  1058. <ul class="md-nav__list" data-md-scrollfix>
  1059. <li class="md-nav__item">
  1060. <a href="../../contributing/devguide/" class="md-nav__link">
  1061. <span class="md-ellipsis">
  1062. Developer guide
  1063. </span>
  1064. </a>
  1065. </li>
  1066. <li class="md-nav__item">
  1067. <a href="../../contributing/process/" class="md-nav__link">
  1068. <span class="md-ellipsis">
  1069. Contributing Process
  1070. </span>
  1071. </a>
  1072. </li>
  1073. <li class="md-nav__item">
  1074. <a href="../../contributing/release/" class="md-nav__link">
  1075. <span class="md-ellipsis">
  1076. Release Process
  1077. </span>
  1078. </a>
  1079. </li>
  1080. <li class="md-nav__item">
  1081. <a href="../../contributing/coc/" class="md-nav__link">
  1082. <span class="md-ellipsis">
  1083. Code of Conduct
  1084. </span>
  1085. </a>
  1086. </li>
  1087. <li class="md-nav__item">
  1088. <a href="../../contributing/calendar/" class="md-nav__link">
  1089. <span class="md-ellipsis">
  1090. Community meetings calendar
  1091. </span>
  1092. </a>
  1093. </li>
  1094. <li class="md-nav__item">
  1095. <a href="../../contributing/roadmap/" class="md-nav__link">
  1096. <span class="md-ellipsis">
  1097. Roadmap
  1098. </span>
  1099. </a>
  1100. </li>
  1101. </ul>
  1102. </nav>
  1103. </li>
  1104. <li class="md-nav__item md-nav__item--nested">
  1105. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_2" >
  1106. <label class="md-nav__link" for="__nav_6_2" id="__nav_6_2_label" tabindex="0">
  1107. <span class="md-ellipsis">
  1108. External Resources
  1109. </span>
  1110. <span class="md-nav__icon md-icon"></span>
  1111. </label>
  1112. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_2_label" aria-expanded="false">
  1113. <label class="md-nav__title" for="__nav_6_2">
  1114. <span class="md-nav__icon md-icon"></span>
  1115. External Resources
  1116. </label>
  1117. <ul class="md-nav__list" data-md-scrollfix>
  1118. <li class="md-nav__item">
  1119. <a href="../../eso-talks/" class="md-nav__link">
  1120. <span class="md-ellipsis">
  1121. Talks
  1122. </span>
  1123. </a>
  1124. </li>
  1125. <li class="md-nav__item">
  1126. <a href="../../eso-demos/" class="md-nav__link">
  1127. <span class="md-ellipsis">
  1128. Demos
  1129. </span>
  1130. </a>
  1131. </li>
  1132. <li class="md-nav__item">
  1133. <a href="../../eso-blogs/" class="md-nav__link">
  1134. <span class="md-ellipsis">
  1135. Blogs
  1136. </span>
  1137. </a>
  1138. </li>
  1139. <li class="md-nav__item">
  1140. <a href="../../eso-tools/" class="md-nav__link">
  1141. <span class="md-ellipsis">
  1142. Tools
  1143. </span>
  1144. </a>
  1145. </li>
  1146. </ul>
  1147. </nav>
  1148. </li>
  1149. </ul>
  1150. </nav>
  1151. </li>
  1152. </ul>
  1153. </nav>
  1154. </div>
  1155. </div>
  1156. </div>
  1157. <div class="md-sidebar md-sidebar--secondary" data-md-component="sidebar" data-md-type="toc" >
  1158. <div class="md-sidebar__scrollwrap">
  1159. <div class="md-sidebar__inner">
  1160. <nav class="md-nav md-nav--secondary" aria-label="Table of contents">
  1161. </nav>
  1162. </div>
  1163. </div>
  1164. </div>
  1165. <div class="md-content" data-md-component="content">
  1166. <article class="md-content__inner md-typeset">
  1167. <h1>API specification</h1>
  1168. <p>Packages:</p>
  1169. <ul>
  1170. <li>
  1171. <a href="#external-secrets.io%2fv1">external-secrets.io/v1</a>
  1172. </li>
  1173. </ul>
  1174. <h2 id="external-secrets.io/v1">external-secrets.io/v1</h2>
  1175. <p>
  1176. <p>Package v1 contains resources for external-secrets</p>
  1177. </p>
  1178. <p>Resource Types:</p>
  1179. <ul></ul>
  1180. <h3 id="external-secrets.io/v1.AWSAuth">AWSAuth
  1181. </h3>
  1182. <p>
  1183. (<em>Appears on:</em>
  1184. <a href="#external-secrets.io/v1.AWSProvider">AWSProvider</a>)
  1185. </p>
  1186. <p>
  1187. <p>AWSAuth tells the controller how to do authentication with aws.
  1188. Only one of secretRef or jwt can be specified.
  1189. if none is specified the controller will load credentials using the aws sdk defaults.</p>
  1190. </p>
  1191. <table>
  1192. <thead>
  1193. <tr>
  1194. <th>Field</th>
  1195. <th>Description</th>
  1196. </tr>
  1197. </thead>
  1198. <tbody>
  1199. <tr>
  1200. <td>
  1201. <code>secretRef</code></br>
  1202. <em>
  1203. <a href="#external-secrets.io/v1.AWSAuthSecretRef">
  1204. AWSAuthSecretRef
  1205. </a>
  1206. </em>
  1207. </td>
  1208. <td>
  1209. <em>(Optional)</em>
  1210. </td>
  1211. </tr>
  1212. <tr>
  1213. <td>
  1214. <code>jwt</code></br>
  1215. <em>
  1216. <a href="#external-secrets.io/v1.AWSJWTAuth">
  1217. AWSJWTAuth
  1218. </a>
  1219. </em>
  1220. </td>
  1221. <td>
  1222. <em>(Optional)</em>
  1223. </td>
  1224. </tr>
  1225. </tbody>
  1226. </table>
  1227. <h3 id="external-secrets.io/v1.AWSAuthSecretRef">AWSAuthSecretRef
  1228. </h3>
  1229. <p>
  1230. (<em>Appears on:</em>
  1231. <a href="#external-secrets.io/v1.AWSAuth">AWSAuth</a>)
  1232. </p>
  1233. <p>
  1234. <p>AWSAuthSecretRef holds secret references for AWS credentials
  1235. both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.</p>
  1236. </p>
  1237. <table>
  1238. <thead>
  1239. <tr>
  1240. <th>Field</th>
  1241. <th>Description</th>
  1242. </tr>
  1243. </thead>
  1244. <tbody>
  1245. <tr>
  1246. <td>
  1247. <code>accessKeyIDSecretRef</code></br>
  1248. <em>
  1249. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1250. External Secrets meta/v1.SecretKeySelector
  1251. </a>
  1252. </em>
  1253. </td>
  1254. <td>
  1255. <p>The AccessKeyID is used for authentication</p>
  1256. </td>
  1257. </tr>
  1258. <tr>
  1259. <td>
  1260. <code>secretAccessKeySecretRef</code></br>
  1261. <em>
  1262. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1263. External Secrets meta/v1.SecretKeySelector
  1264. </a>
  1265. </em>
  1266. </td>
  1267. <td>
  1268. <p>The SecretAccessKey is used for authentication</p>
  1269. </td>
  1270. </tr>
  1271. <tr>
  1272. <td>
  1273. <code>sessionTokenSecretRef</code></br>
  1274. <em>
  1275. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1276. External Secrets meta/v1.SecretKeySelector
  1277. </a>
  1278. </em>
  1279. </td>
  1280. <td>
  1281. <p>The SessionToken used for authentication
  1282. This must be defined if AccessKeyID and SecretAccessKey are temporary credentials
  1283. see: <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html">https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html</a></p>
  1284. </td>
  1285. </tr>
  1286. </tbody>
  1287. </table>
  1288. <h3 id="external-secrets.io/v1.AWSJWTAuth">AWSJWTAuth
  1289. </h3>
  1290. <p>
  1291. (<em>Appears on:</em>
  1292. <a href="#external-secrets.io/v1.AWSAuth">AWSAuth</a>)
  1293. </p>
  1294. <p>
  1295. <p>Authenticate against AWS using service account tokens.</p>
  1296. </p>
  1297. <table>
  1298. <thead>
  1299. <tr>
  1300. <th>Field</th>
  1301. <th>Description</th>
  1302. </tr>
  1303. </thead>
  1304. <tbody>
  1305. <tr>
  1306. <td>
  1307. <code>serviceAccountRef</code></br>
  1308. <em>
  1309. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  1310. External Secrets meta/v1.ServiceAccountSelector
  1311. </a>
  1312. </em>
  1313. </td>
  1314. <td>
  1315. </td>
  1316. </tr>
  1317. </tbody>
  1318. </table>
  1319. <h3 id="external-secrets.io/v1.AWSProvider">AWSProvider
  1320. </h3>
  1321. <p>
  1322. (<em>Appears on:</em>
  1323. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  1324. </p>
  1325. <p>
  1326. <p>AWSProvider configures a store to sync secrets with AWS.</p>
  1327. </p>
  1328. <table>
  1329. <thead>
  1330. <tr>
  1331. <th>Field</th>
  1332. <th>Description</th>
  1333. </tr>
  1334. </thead>
  1335. <tbody>
  1336. <tr>
  1337. <td>
  1338. <code>service</code></br>
  1339. <em>
  1340. <a href="#external-secrets.io/v1.AWSServiceType">
  1341. AWSServiceType
  1342. </a>
  1343. </em>
  1344. </td>
  1345. <td>
  1346. <p>Service defines which service should be used to fetch the secrets</p>
  1347. </td>
  1348. </tr>
  1349. <tr>
  1350. <td>
  1351. <code>auth</code></br>
  1352. <em>
  1353. <a href="#external-secrets.io/v1.AWSAuth">
  1354. AWSAuth
  1355. </a>
  1356. </em>
  1357. </td>
  1358. <td>
  1359. <em>(Optional)</em>
  1360. <p>Auth defines the information necessary to authenticate against AWS
  1361. if not set aws sdk will infer credentials from your environment
  1362. see: <a href="https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials">https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials</a></p>
  1363. </td>
  1364. </tr>
  1365. <tr>
  1366. <td>
  1367. <code>role</code></br>
  1368. <em>
  1369. string
  1370. </em>
  1371. </td>
  1372. <td>
  1373. <em>(Optional)</em>
  1374. <p>Role is a Role ARN which the provider will assume</p>
  1375. </td>
  1376. </tr>
  1377. <tr>
  1378. <td>
  1379. <code>region</code></br>
  1380. <em>
  1381. string
  1382. </em>
  1383. </td>
  1384. <td>
  1385. <p>AWS Region to be used for the provider</p>
  1386. </td>
  1387. </tr>
  1388. <tr>
  1389. <td>
  1390. <code>additionalRoles</code></br>
  1391. <em>
  1392. []string
  1393. </em>
  1394. </td>
  1395. <td>
  1396. <em>(Optional)</em>
  1397. <p>AdditionalRoles is a chained list of Role ARNs which the provider will sequentially assume before assuming the Role</p>
  1398. </td>
  1399. </tr>
  1400. <tr>
  1401. <td>
  1402. <code>externalID</code></br>
  1403. <em>
  1404. string
  1405. </em>
  1406. </td>
  1407. <td>
  1408. <p>AWS External ID set on assumed IAM roles</p>
  1409. </td>
  1410. </tr>
  1411. <tr>
  1412. <td>
  1413. <code>sessionTags</code></br>
  1414. <em>
  1415. <a href="#external-secrets.io/v1.*github.com/external-secrets/external-secrets/apis/externalsecrets/v1.Tag">
  1416. []*github.com/external-secrets/external-secrets/apis/externalsecrets/v1.Tag
  1417. </a>
  1418. </em>
  1419. </td>
  1420. <td>
  1421. <em>(Optional)</em>
  1422. <p>AWS STS assume role session tags</p>
  1423. </td>
  1424. </tr>
  1425. <tr>
  1426. <td>
  1427. <code>secretsManager</code></br>
  1428. <em>
  1429. <a href="#external-secrets.io/v1.SecretsManager">
  1430. SecretsManager
  1431. </a>
  1432. </em>
  1433. </td>
  1434. <td>
  1435. <em>(Optional)</em>
  1436. <p>SecretsManager defines how the provider behaves when interacting with AWS SecretsManager</p>
  1437. </td>
  1438. </tr>
  1439. <tr>
  1440. <td>
  1441. <code>transitiveTagKeys</code></br>
  1442. <em>
  1443. []string
  1444. </em>
  1445. </td>
  1446. <td>
  1447. <em>(Optional)</em>
  1448. <p>AWS STS assume role transitive session tags. Required when multiple rules are used with the provider</p>
  1449. </td>
  1450. </tr>
  1451. <tr>
  1452. <td>
  1453. <code>prefix</code></br>
  1454. <em>
  1455. string
  1456. </em>
  1457. </td>
  1458. <td>
  1459. <em>(Optional)</em>
  1460. <p>Prefix adds a prefix to all retrieved values.</p>
  1461. </td>
  1462. </tr>
  1463. </tbody>
  1464. </table>
  1465. <h3 id="external-secrets.io/v1.AWSServiceType">AWSServiceType
  1466. (<code>string</code> alias)</p></h3>
  1467. <p>
  1468. (<em>Appears on:</em>
  1469. <a href="#external-secrets.io/v1.AWSProvider">AWSProvider</a>)
  1470. </p>
  1471. <p>
  1472. <p>AWSServiceType is a enum that defines the service/API that is used to fetch the secrets.</p>
  1473. </p>
  1474. <table>
  1475. <thead>
  1476. <tr>
  1477. <th>Value</th>
  1478. <th>Description</th>
  1479. </tr>
  1480. </thead>
  1481. <tbody><tr><td><p>&#34;ParameterStore&#34;</p></td>
  1482. <td><p>AWSServiceParameterStore is the AWS SystemsManager ParameterStore service.
  1483. see: <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html">https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html</a></p>
  1484. </td>
  1485. </tr><tr><td><p>&#34;SecretsManager&#34;</p></td>
  1486. <td><p>AWSServiceSecretsManager is the AWS SecretsManager service.
  1487. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html">https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html</a></p>
  1488. </td>
  1489. </tr></tbody>
  1490. </table>
  1491. <h3 id="external-secrets.io/v1.AkeylessAuth">AkeylessAuth
  1492. </h3>
  1493. <p>
  1494. (<em>Appears on:</em>
  1495. <a href="#external-secrets.io/v1.AkeylessProvider">AkeylessProvider</a>)
  1496. </p>
  1497. <p>
  1498. </p>
  1499. <table>
  1500. <thead>
  1501. <tr>
  1502. <th>Field</th>
  1503. <th>Description</th>
  1504. </tr>
  1505. </thead>
  1506. <tbody>
  1507. <tr>
  1508. <td>
  1509. <code>secretRef</code></br>
  1510. <em>
  1511. <a href="#external-secrets.io/v1.AkeylessAuthSecretRef">
  1512. AkeylessAuthSecretRef
  1513. </a>
  1514. </em>
  1515. </td>
  1516. <td>
  1517. <em>(Optional)</em>
  1518. <p>Reference to a Secret that contains the details
  1519. to authenticate with Akeyless.</p>
  1520. </td>
  1521. </tr>
  1522. <tr>
  1523. <td>
  1524. <code>kubernetesAuth</code></br>
  1525. <em>
  1526. <a href="#external-secrets.io/v1.AkeylessKubernetesAuth">
  1527. AkeylessKubernetesAuth
  1528. </a>
  1529. </em>
  1530. </td>
  1531. <td>
  1532. <em>(Optional)</em>
  1533. <p>Kubernetes authenticates with Akeyless by passing the ServiceAccount
  1534. token stored in the named Secret resource.</p>
  1535. </td>
  1536. </tr>
  1537. </tbody>
  1538. </table>
  1539. <h3 id="external-secrets.io/v1.AkeylessAuthSecretRef">AkeylessAuthSecretRef
  1540. </h3>
  1541. <p>
  1542. (<em>Appears on:</em>
  1543. <a href="#external-secrets.io/v1.AkeylessAuth">AkeylessAuth</a>)
  1544. </p>
  1545. <p>
  1546. <p>AkeylessAuthSecretRef
  1547. AKEYLESS_ACCESS_TYPE_PARAM: AZURE_OBJ_ID OR GCP_AUDIENCE OR ACCESS_KEY OR KUB_CONFIG_NAME.</p>
  1548. </p>
  1549. <table>
  1550. <thead>
  1551. <tr>
  1552. <th>Field</th>
  1553. <th>Description</th>
  1554. </tr>
  1555. </thead>
  1556. <tbody>
  1557. <tr>
  1558. <td>
  1559. <code>accessID</code></br>
  1560. <em>
  1561. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1562. External Secrets meta/v1.SecretKeySelector
  1563. </a>
  1564. </em>
  1565. </td>
  1566. <td>
  1567. <p>The SecretAccessID is used for authentication</p>
  1568. </td>
  1569. </tr>
  1570. <tr>
  1571. <td>
  1572. <code>accessType</code></br>
  1573. <em>
  1574. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1575. External Secrets meta/v1.SecretKeySelector
  1576. </a>
  1577. </em>
  1578. </td>
  1579. <td>
  1580. </td>
  1581. </tr>
  1582. <tr>
  1583. <td>
  1584. <code>accessTypeParam</code></br>
  1585. <em>
  1586. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1587. External Secrets meta/v1.SecretKeySelector
  1588. </a>
  1589. </em>
  1590. </td>
  1591. <td>
  1592. </td>
  1593. </tr>
  1594. </tbody>
  1595. </table>
  1596. <h3 id="external-secrets.io/v1.AkeylessKubernetesAuth">AkeylessKubernetesAuth
  1597. </h3>
  1598. <p>
  1599. (<em>Appears on:</em>
  1600. <a href="#external-secrets.io/v1.AkeylessAuth">AkeylessAuth</a>)
  1601. </p>
  1602. <p>
  1603. <p>Authenticate with Kubernetes ServiceAccount token stored.</p>
  1604. </p>
  1605. <table>
  1606. <thead>
  1607. <tr>
  1608. <th>Field</th>
  1609. <th>Description</th>
  1610. </tr>
  1611. </thead>
  1612. <tbody>
  1613. <tr>
  1614. <td>
  1615. <code>accessID</code></br>
  1616. <em>
  1617. string
  1618. </em>
  1619. </td>
  1620. <td>
  1621. <p>the Akeyless Kubernetes auth-method access-id</p>
  1622. </td>
  1623. </tr>
  1624. <tr>
  1625. <td>
  1626. <code>k8sConfName</code></br>
  1627. <em>
  1628. string
  1629. </em>
  1630. </td>
  1631. <td>
  1632. <p>Kubernetes-auth configuration name in Akeyless-Gateway</p>
  1633. </td>
  1634. </tr>
  1635. <tr>
  1636. <td>
  1637. <code>serviceAccountRef</code></br>
  1638. <em>
  1639. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  1640. External Secrets meta/v1.ServiceAccountSelector
  1641. </a>
  1642. </em>
  1643. </td>
  1644. <td>
  1645. <em>(Optional)</em>
  1646. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  1647. If the service account is specified, the service account secret token JWT will be used
  1648. for authenticating with Akeyless. If the service account selector is not supplied,
  1649. the secretRef will be used instead.</p>
  1650. </td>
  1651. </tr>
  1652. <tr>
  1653. <td>
  1654. <code>secretRef</code></br>
  1655. <em>
  1656. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1657. External Secrets meta/v1.SecretKeySelector
  1658. </a>
  1659. </em>
  1660. </td>
  1661. <td>
  1662. <em>(Optional)</em>
  1663. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  1664. for authenticating with Akeyless. If a name is specified without a key,
  1665. <code>token</code> is the default. If one is not specified, the one bound to
  1666. the controller will be used.</p>
  1667. </td>
  1668. </tr>
  1669. </tbody>
  1670. </table>
  1671. <h3 id="external-secrets.io/v1.AkeylessProvider">AkeylessProvider
  1672. </h3>
  1673. <p>
  1674. (<em>Appears on:</em>
  1675. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  1676. </p>
  1677. <p>
  1678. <p>AkeylessProvider Configures an store to sync secrets using Akeyless KV.</p>
  1679. </p>
  1680. <table>
  1681. <thead>
  1682. <tr>
  1683. <th>Field</th>
  1684. <th>Description</th>
  1685. </tr>
  1686. </thead>
  1687. <tbody>
  1688. <tr>
  1689. <td>
  1690. <code>akeylessGWApiURL</code></br>
  1691. <em>
  1692. string
  1693. </em>
  1694. </td>
  1695. <td>
  1696. <p>Akeyless GW API Url from which the secrets to be fetched from.</p>
  1697. </td>
  1698. </tr>
  1699. <tr>
  1700. <td>
  1701. <code>authSecretRef</code></br>
  1702. <em>
  1703. <a href="#external-secrets.io/v1.AkeylessAuth">
  1704. AkeylessAuth
  1705. </a>
  1706. </em>
  1707. </td>
  1708. <td>
  1709. <p>Auth configures how the operator authenticates with Akeyless.</p>
  1710. </td>
  1711. </tr>
  1712. <tr>
  1713. <td>
  1714. <code>caBundle</code></br>
  1715. <em>
  1716. []byte
  1717. </em>
  1718. </td>
  1719. <td>
  1720. <em>(Optional)</em>
  1721. <p>PEM/base64 encoded CA bundle used to validate Akeyless Gateway certificate. Only used
  1722. if the AkeylessGWApiURL URL is using HTTPS protocol. If not set the system root certificates
  1723. are used to validate the TLS connection.</p>
  1724. </td>
  1725. </tr>
  1726. <tr>
  1727. <td>
  1728. <code>caProvider</code></br>
  1729. <em>
  1730. <a href="#external-secrets.io/v1.CAProvider">
  1731. CAProvider
  1732. </a>
  1733. </em>
  1734. </td>
  1735. <td>
  1736. <em>(Optional)</em>
  1737. <p>The provider for the CA bundle to use to validate Akeyless Gateway certificate.</p>
  1738. </td>
  1739. </tr>
  1740. </tbody>
  1741. </table>
  1742. <h3 id="external-secrets.io/v1.AlibabaAuth">AlibabaAuth
  1743. </h3>
  1744. <p>
  1745. (<em>Appears on:</em>
  1746. <a href="#external-secrets.io/v1.AlibabaProvider">AlibabaProvider</a>)
  1747. </p>
  1748. <p>
  1749. <p>AlibabaAuth contains a secretRef for credentials.</p>
  1750. </p>
  1751. <table>
  1752. <thead>
  1753. <tr>
  1754. <th>Field</th>
  1755. <th>Description</th>
  1756. </tr>
  1757. </thead>
  1758. <tbody>
  1759. <tr>
  1760. <td>
  1761. <code>secretRef</code></br>
  1762. <em>
  1763. <a href="#external-secrets.io/v1.AlibabaAuthSecretRef">
  1764. AlibabaAuthSecretRef
  1765. </a>
  1766. </em>
  1767. </td>
  1768. <td>
  1769. <em>(Optional)</em>
  1770. </td>
  1771. </tr>
  1772. <tr>
  1773. <td>
  1774. <code>rrsa</code></br>
  1775. <em>
  1776. <a href="#external-secrets.io/v1.AlibabaRRSAAuth">
  1777. AlibabaRRSAAuth
  1778. </a>
  1779. </em>
  1780. </td>
  1781. <td>
  1782. <em>(Optional)</em>
  1783. </td>
  1784. </tr>
  1785. </tbody>
  1786. </table>
  1787. <h3 id="external-secrets.io/v1.AlibabaAuthSecretRef">AlibabaAuthSecretRef
  1788. </h3>
  1789. <p>
  1790. (<em>Appears on:</em>
  1791. <a href="#external-secrets.io/v1.AlibabaAuth">AlibabaAuth</a>)
  1792. </p>
  1793. <p>
  1794. <p>AlibabaAuthSecretRef holds secret references for Alibaba credentials.</p>
  1795. </p>
  1796. <table>
  1797. <thead>
  1798. <tr>
  1799. <th>Field</th>
  1800. <th>Description</th>
  1801. </tr>
  1802. </thead>
  1803. <tbody>
  1804. <tr>
  1805. <td>
  1806. <code>accessKeyIDSecretRef</code></br>
  1807. <em>
  1808. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1809. External Secrets meta/v1.SecretKeySelector
  1810. </a>
  1811. </em>
  1812. </td>
  1813. <td>
  1814. <p>The AccessKeyID is used for authentication</p>
  1815. </td>
  1816. </tr>
  1817. <tr>
  1818. <td>
  1819. <code>accessKeySecretSecretRef</code></br>
  1820. <em>
  1821. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1822. External Secrets meta/v1.SecretKeySelector
  1823. </a>
  1824. </em>
  1825. </td>
  1826. <td>
  1827. <p>The AccessKeySecret is used for authentication</p>
  1828. </td>
  1829. </tr>
  1830. </tbody>
  1831. </table>
  1832. <h3 id="external-secrets.io/v1.AlibabaProvider">AlibabaProvider
  1833. </h3>
  1834. <p>
  1835. (<em>Appears on:</em>
  1836. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  1837. </p>
  1838. <p>
  1839. <p>AlibabaProvider configures a store to sync secrets using the Alibaba Secret Manager provider.</p>
  1840. </p>
  1841. <table>
  1842. <thead>
  1843. <tr>
  1844. <th>Field</th>
  1845. <th>Description</th>
  1846. </tr>
  1847. </thead>
  1848. <tbody>
  1849. <tr>
  1850. <td>
  1851. <code>auth</code></br>
  1852. <em>
  1853. <a href="#external-secrets.io/v1.AlibabaAuth">
  1854. AlibabaAuth
  1855. </a>
  1856. </em>
  1857. </td>
  1858. <td>
  1859. </td>
  1860. </tr>
  1861. <tr>
  1862. <td>
  1863. <code>regionID</code></br>
  1864. <em>
  1865. string
  1866. </em>
  1867. </td>
  1868. <td>
  1869. <p>Alibaba Region to be used for the provider</p>
  1870. </td>
  1871. </tr>
  1872. </tbody>
  1873. </table>
  1874. <h3 id="external-secrets.io/v1.AlibabaRRSAAuth">AlibabaRRSAAuth
  1875. </h3>
  1876. <p>
  1877. (<em>Appears on:</em>
  1878. <a href="#external-secrets.io/v1.AlibabaAuth">AlibabaAuth</a>)
  1879. </p>
  1880. <p>
  1881. <p>Authenticate against Alibaba using RRSA.</p>
  1882. </p>
  1883. <table>
  1884. <thead>
  1885. <tr>
  1886. <th>Field</th>
  1887. <th>Description</th>
  1888. </tr>
  1889. </thead>
  1890. <tbody>
  1891. <tr>
  1892. <td>
  1893. <code>oidcProviderArn</code></br>
  1894. <em>
  1895. string
  1896. </em>
  1897. </td>
  1898. <td>
  1899. </td>
  1900. </tr>
  1901. <tr>
  1902. <td>
  1903. <code>oidcTokenFilePath</code></br>
  1904. <em>
  1905. string
  1906. </em>
  1907. </td>
  1908. <td>
  1909. </td>
  1910. </tr>
  1911. <tr>
  1912. <td>
  1913. <code>roleArn</code></br>
  1914. <em>
  1915. string
  1916. </em>
  1917. </td>
  1918. <td>
  1919. </td>
  1920. </tr>
  1921. <tr>
  1922. <td>
  1923. <code>sessionName</code></br>
  1924. <em>
  1925. string
  1926. </em>
  1927. </td>
  1928. <td>
  1929. </td>
  1930. </tr>
  1931. </tbody>
  1932. </table>
  1933. <h3 id="external-secrets.io/v1.AuthorizationProtocol">AuthorizationProtocol
  1934. </h3>
  1935. <p>
  1936. (<em>Appears on:</em>
  1937. <a href="#external-secrets.io/v1.WebhookProvider">WebhookProvider</a>)
  1938. </p>
  1939. <p>
  1940. <p>AuthorizationProtocol contains the protocol-specific configuration</p>
  1941. </p>
  1942. <table>
  1943. <thead>
  1944. <tr>
  1945. <th>Field</th>
  1946. <th>Description</th>
  1947. </tr>
  1948. </thead>
  1949. <tbody>
  1950. <tr>
  1951. <td>
  1952. <code>ntlm</code></br>
  1953. <em>
  1954. <a href="#external-secrets.io/v1.NTLMProtocol">
  1955. NTLMProtocol
  1956. </a>
  1957. </em>
  1958. </td>
  1959. <td>
  1960. <em>(Optional)</em>
  1961. <p>NTLMProtocol configures the store to use NTLM for auth</p>
  1962. </td>
  1963. </tr>
  1964. </tbody>
  1965. </table>
  1966. <h3 id="external-secrets.io/v1.AzureAuthType">AzureAuthType
  1967. (<code>string</code> alias)</p></h3>
  1968. <p>
  1969. (<em>Appears on:</em>
  1970. <a href="#external-secrets.io/v1.AzureKVProvider">AzureKVProvider</a>)
  1971. </p>
  1972. <p>
  1973. <p>AuthType describes how to authenticate to the Azure Keyvault
  1974. Only one of the following auth types may be specified.
  1975. If none of the following auth type is specified, the default one
  1976. is ServicePrincipal.</p>
  1977. </p>
  1978. <table>
  1979. <thead>
  1980. <tr>
  1981. <th>Value</th>
  1982. <th>Description</th>
  1983. </tr>
  1984. </thead>
  1985. <tbody><tr><td><p>&#34;ManagedIdentity&#34;</p></td>
  1986. <td><p>Using Managed Identity to authenticate. Used with aad-pod-identity installed in the cluster.</p>
  1987. </td>
  1988. </tr><tr><td><p>&#34;ServicePrincipal&#34;</p></td>
  1989. <td><p>Using service principal to authenticate, which needs a tenantId, a clientId and a clientSecret.</p>
  1990. </td>
  1991. </tr><tr><td><p>&#34;WorkloadIdentity&#34;</p></td>
  1992. <td><p>Using Workload Identity service accounts to authenticate.</p>
  1993. </td>
  1994. </tr></tbody>
  1995. </table>
  1996. <h3 id="external-secrets.io/v1.AzureEnvironmentType">AzureEnvironmentType
  1997. (<code>string</code> alias)</p></h3>
  1998. <p>
  1999. (<em>Appears on:</em>
  2000. <a href="#external-secrets.io/v1.AzureKVProvider">AzureKVProvider</a>)
  2001. </p>
  2002. <p>
  2003. <p>AzureEnvironmentType specifies the Azure cloud environment endpoints to use for
  2004. connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint.
  2005. The following endpoints are available, also see here: <a href="https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152">https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152</a>
  2006. PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud</p>
  2007. </p>
  2008. <table>
  2009. <thead>
  2010. <tr>
  2011. <th>Value</th>
  2012. <th>Description</th>
  2013. </tr>
  2014. </thead>
  2015. <tbody><tr><td><p>&#34;ChinaCloud&#34;</p></td>
  2016. <td></td>
  2017. </tr><tr><td><p>&#34;GermanCloud&#34;</p></td>
  2018. <td></td>
  2019. </tr><tr><td><p>&#34;PublicCloud&#34;</p></td>
  2020. <td></td>
  2021. </tr><tr><td><p>&#34;USGovernmentCloud&#34;</p></td>
  2022. <td></td>
  2023. </tr></tbody>
  2024. </table>
  2025. <h3 id="external-secrets.io/v1.AzureKVAuth">AzureKVAuth
  2026. </h3>
  2027. <p>
  2028. (<em>Appears on:</em>
  2029. <a href="#external-secrets.io/v1.AzureKVProvider">AzureKVProvider</a>)
  2030. </p>
  2031. <p>
  2032. <p>Configuration used to authenticate with Azure.</p>
  2033. </p>
  2034. <table>
  2035. <thead>
  2036. <tr>
  2037. <th>Field</th>
  2038. <th>Description</th>
  2039. </tr>
  2040. </thead>
  2041. <tbody>
  2042. <tr>
  2043. <td>
  2044. <code>clientId</code></br>
  2045. <em>
  2046. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2047. External Secrets meta/v1.SecretKeySelector
  2048. </a>
  2049. </em>
  2050. </td>
  2051. <td>
  2052. <em>(Optional)</em>
  2053. <p>The Azure clientId of the service principle or managed identity used for authentication.</p>
  2054. </td>
  2055. </tr>
  2056. <tr>
  2057. <td>
  2058. <code>tenantId</code></br>
  2059. <em>
  2060. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2061. External Secrets meta/v1.SecretKeySelector
  2062. </a>
  2063. </em>
  2064. </td>
  2065. <td>
  2066. <em>(Optional)</em>
  2067. <p>The Azure tenantId of the managed identity used for authentication.</p>
  2068. </td>
  2069. </tr>
  2070. <tr>
  2071. <td>
  2072. <code>clientSecret</code></br>
  2073. <em>
  2074. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2075. External Secrets meta/v1.SecretKeySelector
  2076. </a>
  2077. </em>
  2078. </td>
  2079. <td>
  2080. <em>(Optional)</em>
  2081. <p>The Azure ClientSecret of the service principle used for authentication.</p>
  2082. </td>
  2083. </tr>
  2084. <tr>
  2085. <td>
  2086. <code>clientCertificate</code></br>
  2087. <em>
  2088. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2089. External Secrets meta/v1.SecretKeySelector
  2090. </a>
  2091. </em>
  2092. </td>
  2093. <td>
  2094. <em>(Optional)</em>
  2095. <p>The Azure ClientCertificate of the service principle used for authentication.</p>
  2096. </td>
  2097. </tr>
  2098. </tbody>
  2099. </table>
  2100. <h3 id="external-secrets.io/v1.AzureKVProvider">AzureKVProvider
  2101. </h3>
  2102. <p>
  2103. (<em>Appears on:</em>
  2104. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  2105. </p>
  2106. <p>
  2107. <p>Configures an store to sync secrets using Azure KV.</p>
  2108. </p>
  2109. <table>
  2110. <thead>
  2111. <tr>
  2112. <th>Field</th>
  2113. <th>Description</th>
  2114. </tr>
  2115. </thead>
  2116. <tbody>
  2117. <tr>
  2118. <td>
  2119. <code>authType</code></br>
  2120. <em>
  2121. <a href="#external-secrets.io/v1.AzureAuthType">
  2122. AzureAuthType
  2123. </a>
  2124. </em>
  2125. </td>
  2126. <td>
  2127. <em>(Optional)</em>
  2128. <p>Auth type defines how to authenticate to the keyvault service.
  2129. Valid values are:
  2130. - &ldquo;ServicePrincipal&rdquo; (default): Using a service principal (tenantId, clientId, clientSecret)
  2131. - &ldquo;ManagedIdentity&rdquo;: Using Managed Identity assigned to the pod (see aad-pod-identity)</p>
  2132. </td>
  2133. </tr>
  2134. <tr>
  2135. <td>
  2136. <code>vaultUrl</code></br>
  2137. <em>
  2138. string
  2139. </em>
  2140. </td>
  2141. <td>
  2142. <p>Vault Url from which the secrets to be fetched from.</p>
  2143. </td>
  2144. </tr>
  2145. <tr>
  2146. <td>
  2147. <code>tenantId</code></br>
  2148. <em>
  2149. string
  2150. </em>
  2151. </td>
  2152. <td>
  2153. <em>(Optional)</em>
  2154. <p>TenantID configures the Azure Tenant to send requests to. Required for ServicePrincipal auth type. Optional for WorkloadIdentity.</p>
  2155. </td>
  2156. </tr>
  2157. <tr>
  2158. <td>
  2159. <code>environmentType</code></br>
  2160. <em>
  2161. <a href="#external-secrets.io/v1.AzureEnvironmentType">
  2162. AzureEnvironmentType
  2163. </a>
  2164. </em>
  2165. </td>
  2166. <td>
  2167. <p>EnvironmentType specifies the Azure cloud environment endpoints to use for
  2168. connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint.
  2169. The following endpoints are available, also see here: <a href="https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152">https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152</a>
  2170. PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud</p>
  2171. </td>
  2172. </tr>
  2173. <tr>
  2174. <td>
  2175. <code>authSecretRef</code></br>
  2176. <em>
  2177. <a href="#external-secrets.io/v1.AzureKVAuth">
  2178. AzureKVAuth
  2179. </a>
  2180. </em>
  2181. </td>
  2182. <td>
  2183. <em>(Optional)</em>
  2184. <p>Auth configures how the operator authenticates with Azure. Required for ServicePrincipal auth type. Optional for WorkloadIdentity.</p>
  2185. </td>
  2186. </tr>
  2187. <tr>
  2188. <td>
  2189. <code>serviceAccountRef</code></br>
  2190. <em>
  2191. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  2192. External Secrets meta/v1.ServiceAccountSelector
  2193. </a>
  2194. </em>
  2195. </td>
  2196. <td>
  2197. <em>(Optional)</em>
  2198. <p>ServiceAccountRef specified the service account
  2199. that should be used when authenticating with WorkloadIdentity.</p>
  2200. </td>
  2201. </tr>
  2202. <tr>
  2203. <td>
  2204. <code>identityId</code></br>
  2205. <em>
  2206. string
  2207. </em>
  2208. </td>
  2209. <td>
  2210. <em>(Optional)</em>
  2211. <p>If multiple Managed Identity is assigned to the pod, you can select the one to be used</p>
  2212. </td>
  2213. </tr>
  2214. </tbody>
  2215. </table>
  2216. <h3 id="external-secrets.io/v1.BeyondTrustProviderSecretRef">BeyondTrustProviderSecretRef
  2217. </h3>
  2218. <p>
  2219. (<em>Appears on:</em>
  2220. <a href="#external-secrets.io/v1.BeyondtrustAuth">BeyondtrustAuth</a>)
  2221. </p>
  2222. <p>
  2223. </p>
  2224. <table>
  2225. <thead>
  2226. <tr>
  2227. <th>Field</th>
  2228. <th>Description</th>
  2229. </tr>
  2230. </thead>
  2231. <tbody>
  2232. <tr>
  2233. <td>
  2234. <code>value</code></br>
  2235. <em>
  2236. string
  2237. </em>
  2238. </td>
  2239. <td>
  2240. <em>(Optional)</em>
  2241. <p>Value can be specified directly to set a value without using a secret.</p>
  2242. </td>
  2243. </tr>
  2244. <tr>
  2245. <td>
  2246. <code>secretRef</code></br>
  2247. <em>
  2248. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2249. External Secrets meta/v1.SecretKeySelector
  2250. </a>
  2251. </em>
  2252. </td>
  2253. <td>
  2254. <em>(Optional)</em>
  2255. <p>SecretRef references a key in a secret that will be used as value.</p>
  2256. </td>
  2257. </tr>
  2258. </tbody>
  2259. </table>
  2260. <h3 id="external-secrets.io/v1.BeyondtrustAuth">BeyondtrustAuth
  2261. </h3>
  2262. <p>
  2263. (<em>Appears on:</em>
  2264. <a href="#external-secrets.io/v1.BeyondtrustProvider">BeyondtrustProvider</a>)
  2265. </p>
  2266. <p>
  2267. <p>Configures a store to sync secrets using BeyondTrust Password Safe.</p>
  2268. </p>
  2269. <table>
  2270. <thead>
  2271. <tr>
  2272. <th>Field</th>
  2273. <th>Description</th>
  2274. </tr>
  2275. </thead>
  2276. <tbody>
  2277. <tr>
  2278. <td>
  2279. <code>apiKey</code></br>
  2280. <em>
  2281. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2282. BeyondTrustProviderSecretRef
  2283. </a>
  2284. </em>
  2285. </td>
  2286. <td>
  2287. <p>APIKey If not provided then ClientID/ClientSecret become required.</p>
  2288. </td>
  2289. </tr>
  2290. <tr>
  2291. <td>
  2292. <code>clientId</code></br>
  2293. <em>
  2294. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2295. BeyondTrustProviderSecretRef
  2296. </a>
  2297. </em>
  2298. </td>
  2299. <td>
  2300. <p>ClientID is the API OAuth Client ID.</p>
  2301. </td>
  2302. </tr>
  2303. <tr>
  2304. <td>
  2305. <code>clientSecret</code></br>
  2306. <em>
  2307. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2308. BeyondTrustProviderSecretRef
  2309. </a>
  2310. </em>
  2311. </td>
  2312. <td>
  2313. <p>ClientSecret is the API OAuth Client Secret.</p>
  2314. </td>
  2315. </tr>
  2316. <tr>
  2317. <td>
  2318. <code>certificate</code></br>
  2319. <em>
  2320. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2321. BeyondTrustProviderSecretRef
  2322. </a>
  2323. </em>
  2324. </td>
  2325. <td>
  2326. <p>Certificate (cert.pem) for use when authenticating with an OAuth client Id using a Client Certificate.</p>
  2327. </td>
  2328. </tr>
  2329. <tr>
  2330. <td>
  2331. <code>certificateKey</code></br>
  2332. <em>
  2333. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2334. BeyondTrustProviderSecretRef
  2335. </a>
  2336. </em>
  2337. </td>
  2338. <td>
  2339. <p>Certificate private key (key.pem). For use when authenticating with an OAuth client Id</p>
  2340. </td>
  2341. </tr>
  2342. </tbody>
  2343. </table>
  2344. <h3 id="external-secrets.io/v1.BeyondtrustProvider">BeyondtrustProvider
  2345. </h3>
  2346. <p>
  2347. (<em>Appears on:</em>
  2348. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  2349. </p>
  2350. <p>
  2351. </p>
  2352. <table>
  2353. <thead>
  2354. <tr>
  2355. <th>Field</th>
  2356. <th>Description</th>
  2357. </tr>
  2358. </thead>
  2359. <tbody>
  2360. <tr>
  2361. <td>
  2362. <code>auth</code></br>
  2363. <em>
  2364. <a href="#external-secrets.io/v1.BeyondtrustAuth">
  2365. BeyondtrustAuth
  2366. </a>
  2367. </em>
  2368. </td>
  2369. <td>
  2370. <p>Auth configures how the operator authenticates with Beyondtrust.</p>
  2371. </td>
  2372. </tr>
  2373. <tr>
  2374. <td>
  2375. <code>server</code></br>
  2376. <em>
  2377. <a href="#external-secrets.io/v1.BeyondtrustServer">
  2378. BeyondtrustServer
  2379. </a>
  2380. </em>
  2381. </td>
  2382. <td>
  2383. <p>Auth configures how API server works.</p>
  2384. </td>
  2385. </tr>
  2386. </tbody>
  2387. </table>
  2388. <h3 id="external-secrets.io/v1.BeyondtrustServer">BeyondtrustServer
  2389. </h3>
  2390. <p>
  2391. (<em>Appears on:</em>
  2392. <a href="#external-secrets.io/v1.BeyondtrustProvider">BeyondtrustProvider</a>)
  2393. </p>
  2394. <p>
  2395. <p>Configures a store to sync secrets using BeyondTrust Password Safe.</p>
  2396. </p>
  2397. <table>
  2398. <thead>
  2399. <tr>
  2400. <th>Field</th>
  2401. <th>Description</th>
  2402. </tr>
  2403. </thead>
  2404. <tbody>
  2405. <tr>
  2406. <td>
  2407. <code>apiUrl</code></br>
  2408. <em>
  2409. string
  2410. </em>
  2411. </td>
  2412. <td>
  2413. </td>
  2414. </tr>
  2415. <tr>
  2416. <td>
  2417. <code>apiVersion</code></br>
  2418. <em>
  2419. string
  2420. </em>
  2421. </td>
  2422. <td>
  2423. </td>
  2424. </tr>
  2425. <tr>
  2426. <td>
  2427. <code>retrievalType</code></br>
  2428. <em>
  2429. string
  2430. </em>
  2431. </td>
  2432. <td>
  2433. <p>The secret retrieval type. SECRET = Secrets Safe (credential, text, file). MANAGED_ACCOUNT = Password Safe account associated with a system.</p>
  2434. </td>
  2435. </tr>
  2436. <tr>
  2437. <td>
  2438. <code>separator</code></br>
  2439. <em>
  2440. string
  2441. </em>
  2442. </td>
  2443. <td>
  2444. <p>A character that separates the folder names.</p>
  2445. </td>
  2446. </tr>
  2447. <tr>
  2448. <td>
  2449. <code>verifyCA</code></br>
  2450. <em>
  2451. bool
  2452. </em>
  2453. </td>
  2454. <td>
  2455. </td>
  2456. </tr>
  2457. <tr>
  2458. <td>
  2459. <code>clientTimeOutSeconds</code></br>
  2460. <em>
  2461. int
  2462. </em>
  2463. </td>
  2464. <td>
  2465. <p>Timeout specifies a time limit for requests made by this Client. The timeout includes connection time, any redirects, and reading the response body. Defaults to 45 seconds.</p>
  2466. </td>
  2467. </tr>
  2468. </tbody>
  2469. </table>
  2470. <h3 id="external-secrets.io/v1.BitwardenSecretsManagerAuth">BitwardenSecretsManagerAuth
  2471. </h3>
  2472. <p>
  2473. (<em>Appears on:</em>
  2474. <a href="#external-secrets.io/v1.BitwardenSecretsManagerProvider">BitwardenSecretsManagerProvider</a>)
  2475. </p>
  2476. <p>
  2477. <p>BitwardenSecretsManagerAuth contains the ref to the secret that contains the machine account token.</p>
  2478. </p>
  2479. <table>
  2480. <thead>
  2481. <tr>
  2482. <th>Field</th>
  2483. <th>Description</th>
  2484. </tr>
  2485. </thead>
  2486. <tbody>
  2487. <tr>
  2488. <td>
  2489. <code>secretRef</code></br>
  2490. <em>
  2491. <a href="#external-secrets.io/v1.BitwardenSecretsManagerSecretRef">
  2492. BitwardenSecretsManagerSecretRef
  2493. </a>
  2494. </em>
  2495. </td>
  2496. <td>
  2497. </td>
  2498. </tr>
  2499. </tbody>
  2500. </table>
  2501. <h3 id="external-secrets.io/v1.BitwardenSecretsManagerProvider">BitwardenSecretsManagerProvider
  2502. </h3>
  2503. <p>
  2504. (<em>Appears on:</em>
  2505. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  2506. </p>
  2507. <p>
  2508. <p>BitwardenSecretsManagerProvider configures a store to sync secrets with a Bitwarden Secrets Manager instance.</p>
  2509. </p>
  2510. <table>
  2511. <thead>
  2512. <tr>
  2513. <th>Field</th>
  2514. <th>Description</th>
  2515. </tr>
  2516. </thead>
  2517. <tbody>
  2518. <tr>
  2519. <td>
  2520. <code>apiURL</code></br>
  2521. <em>
  2522. string
  2523. </em>
  2524. </td>
  2525. <td>
  2526. </td>
  2527. </tr>
  2528. <tr>
  2529. <td>
  2530. <code>identityURL</code></br>
  2531. <em>
  2532. string
  2533. </em>
  2534. </td>
  2535. <td>
  2536. </td>
  2537. </tr>
  2538. <tr>
  2539. <td>
  2540. <code>bitwardenServerSDKURL</code></br>
  2541. <em>
  2542. string
  2543. </em>
  2544. </td>
  2545. <td>
  2546. </td>
  2547. </tr>
  2548. <tr>
  2549. <td>
  2550. <code>caBundle</code></br>
  2551. <em>
  2552. string
  2553. </em>
  2554. </td>
  2555. <td>
  2556. <em>(Optional)</em>
  2557. <p>Base64 encoded certificate for the bitwarden server sdk. The sdk MUST run with HTTPS to make sure no MITM attack
  2558. can be performed.</p>
  2559. </td>
  2560. </tr>
  2561. <tr>
  2562. <td>
  2563. <code>caProvider</code></br>
  2564. <em>
  2565. <a href="#external-secrets.io/v1.CAProvider">
  2566. CAProvider
  2567. </a>
  2568. </em>
  2569. </td>
  2570. <td>
  2571. <em>(Optional)</em>
  2572. <p>see: <a href="https://external-secrets.io/latest/spec/#external-secrets.io/v1alpha1.CAProvider">https://external-secrets.io/latest/spec/#external-secrets.io/v1alpha1.CAProvider</a></p>
  2573. </td>
  2574. </tr>
  2575. <tr>
  2576. <td>
  2577. <code>organizationID</code></br>
  2578. <em>
  2579. string
  2580. </em>
  2581. </td>
  2582. <td>
  2583. <p>OrganizationID determines which organization this secret store manages.</p>
  2584. </td>
  2585. </tr>
  2586. <tr>
  2587. <td>
  2588. <code>projectID</code></br>
  2589. <em>
  2590. string
  2591. </em>
  2592. </td>
  2593. <td>
  2594. <p>ProjectID determines which project this secret store manages.</p>
  2595. </td>
  2596. </tr>
  2597. <tr>
  2598. <td>
  2599. <code>auth</code></br>
  2600. <em>
  2601. <a href="#external-secrets.io/v1.BitwardenSecretsManagerAuth">
  2602. BitwardenSecretsManagerAuth
  2603. </a>
  2604. </em>
  2605. </td>
  2606. <td>
  2607. <p>Auth configures how secret-manager authenticates with a bitwarden machine account instance.
  2608. Make sure that the token being used has permissions on the given secret.</p>
  2609. </td>
  2610. </tr>
  2611. </tbody>
  2612. </table>
  2613. <h3 id="external-secrets.io/v1.BitwardenSecretsManagerSecretRef">BitwardenSecretsManagerSecretRef
  2614. </h3>
  2615. <p>
  2616. (<em>Appears on:</em>
  2617. <a href="#external-secrets.io/v1.BitwardenSecretsManagerAuth">BitwardenSecretsManagerAuth</a>)
  2618. </p>
  2619. <p>
  2620. <p>BitwardenSecretsManagerSecretRef contains the credential ref to the bitwarden instance.</p>
  2621. </p>
  2622. <table>
  2623. <thead>
  2624. <tr>
  2625. <th>Field</th>
  2626. <th>Description</th>
  2627. </tr>
  2628. </thead>
  2629. <tbody>
  2630. <tr>
  2631. <td>
  2632. <code>credentials</code></br>
  2633. <em>
  2634. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2635. External Secrets meta/v1.SecretKeySelector
  2636. </a>
  2637. </em>
  2638. </td>
  2639. <td>
  2640. <p>AccessToken used for the bitwarden instance.</p>
  2641. </td>
  2642. </tr>
  2643. </tbody>
  2644. </table>
  2645. <h3 id="external-secrets.io/v1.CAProvider">CAProvider
  2646. </h3>
  2647. <p>
  2648. (<em>Appears on:</em>
  2649. <a href="#external-secrets.io/v1.AkeylessProvider">AkeylessProvider</a>,
  2650. <a href="#external-secrets.io/v1.BitwardenSecretsManagerProvider">BitwardenSecretsManagerProvider</a>,
  2651. <a href="#external-secrets.io/v1.ConjurProvider">ConjurProvider</a>,
  2652. <a href="#external-secrets.io/v1.KubernetesServer">KubernetesServer</a>,
  2653. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  2654. </p>
  2655. <p>
  2656. <p>Used to provide custom certificate authority (CA) certificates
  2657. for a secret store. The CAProvider points to a Secret or ConfigMap resource
  2658. that contains a PEM-encoded certificate.</p>
  2659. </p>
  2660. <table>
  2661. <thead>
  2662. <tr>
  2663. <th>Field</th>
  2664. <th>Description</th>
  2665. </tr>
  2666. </thead>
  2667. <tbody>
  2668. <tr>
  2669. <td>
  2670. <code>type</code></br>
  2671. <em>
  2672. <a href="#external-secrets.io/v1.CAProviderType">
  2673. CAProviderType
  2674. </a>
  2675. </em>
  2676. </td>
  2677. <td>
  2678. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  2679. </td>
  2680. </tr>
  2681. <tr>
  2682. <td>
  2683. <code>name</code></br>
  2684. <em>
  2685. string
  2686. </em>
  2687. </td>
  2688. <td>
  2689. <p>The name of the object located at the provider type.</p>
  2690. </td>
  2691. </tr>
  2692. <tr>
  2693. <td>
  2694. <code>key</code></br>
  2695. <em>
  2696. string
  2697. </em>
  2698. </td>
  2699. <td>
  2700. <p>The key where the CA certificate can be found in the Secret or ConfigMap.</p>
  2701. </td>
  2702. </tr>
  2703. <tr>
  2704. <td>
  2705. <code>namespace</code></br>
  2706. <em>
  2707. string
  2708. </em>
  2709. </td>
  2710. <td>
  2711. <em>(Optional)</em>
  2712. <p>The namespace the Provider type is in.
  2713. Can only be defined when used in a ClusterSecretStore.</p>
  2714. </td>
  2715. </tr>
  2716. </tbody>
  2717. </table>
  2718. <h3 id="external-secrets.io/v1.CAProviderType">CAProviderType
  2719. (<code>string</code> alias)</p></h3>
  2720. <p>
  2721. (<em>Appears on:</em>
  2722. <a href="#external-secrets.io/v1.CAProvider">CAProvider</a>)
  2723. </p>
  2724. <p>
  2725. </p>
  2726. <table>
  2727. <thead>
  2728. <tr>
  2729. <th>Value</th>
  2730. <th>Description</th>
  2731. </tr>
  2732. </thead>
  2733. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  2734. <td></td>
  2735. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  2736. <td></td>
  2737. </tr></tbody>
  2738. </table>
  2739. <h3 id="external-secrets.io/v1.CSMAuth">CSMAuth
  2740. </h3>
  2741. <p>
  2742. (<em>Appears on:</em>
  2743. <a href="#external-secrets.io/v1.CloudruSMProvider">CloudruSMProvider</a>)
  2744. </p>
  2745. <p>
  2746. <p>CSMAuth contains a secretRef for credentials.</p>
  2747. </p>
  2748. <table>
  2749. <thead>
  2750. <tr>
  2751. <th>Field</th>
  2752. <th>Description</th>
  2753. </tr>
  2754. </thead>
  2755. <tbody>
  2756. <tr>
  2757. <td>
  2758. <code>secretRef</code></br>
  2759. <em>
  2760. <a href="#external-secrets.io/v1.CSMAuthSecretRef">
  2761. CSMAuthSecretRef
  2762. </a>
  2763. </em>
  2764. </td>
  2765. <td>
  2766. <em>(Optional)</em>
  2767. </td>
  2768. </tr>
  2769. </tbody>
  2770. </table>
  2771. <h3 id="external-secrets.io/v1.CSMAuthSecretRef">CSMAuthSecretRef
  2772. </h3>
  2773. <p>
  2774. (<em>Appears on:</em>
  2775. <a href="#external-secrets.io/v1.CSMAuth">CSMAuth</a>)
  2776. </p>
  2777. <p>
  2778. <p>CSMAuthSecretRef holds secret references for Cloud.ru credentials.</p>
  2779. </p>
  2780. <table>
  2781. <thead>
  2782. <tr>
  2783. <th>Field</th>
  2784. <th>Description</th>
  2785. </tr>
  2786. </thead>
  2787. <tbody>
  2788. <tr>
  2789. <td>
  2790. <code>accessKeyIDSecretRef</code></br>
  2791. <em>
  2792. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2793. External Secrets meta/v1.SecretKeySelector
  2794. </a>
  2795. </em>
  2796. </td>
  2797. <td>
  2798. <p>The AccessKeyID is used for authentication</p>
  2799. </td>
  2800. </tr>
  2801. <tr>
  2802. <td>
  2803. <code>accessKeySecretSecretRef</code></br>
  2804. <em>
  2805. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2806. External Secrets meta/v1.SecretKeySelector
  2807. </a>
  2808. </em>
  2809. </td>
  2810. <td>
  2811. <p>The AccessKeySecret is used for authentication</p>
  2812. </td>
  2813. </tr>
  2814. </tbody>
  2815. </table>
  2816. <h3 id="external-secrets.io/v1.CertAuth">CertAuth
  2817. </h3>
  2818. <p>
  2819. (<em>Appears on:</em>
  2820. <a href="#external-secrets.io/v1.KubernetesAuth">KubernetesAuth</a>)
  2821. </p>
  2822. <p>
  2823. </p>
  2824. <table>
  2825. <thead>
  2826. <tr>
  2827. <th>Field</th>
  2828. <th>Description</th>
  2829. </tr>
  2830. </thead>
  2831. <tbody>
  2832. <tr>
  2833. <td>
  2834. <code>clientCert</code></br>
  2835. <em>
  2836. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2837. External Secrets meta/v1.SecretKeySelector
  2838. </a>
  2839. </em>
  2840. </td>
  2841. <td>
  2842. </td>
  2843. </tr>
  2844. <tr>
  2845. <td>
  2846. <code>clientKey</code></br>
  2847. <em>
  2848. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2849. External Secrets meta/v1.SecretKeySelector
  2850. </a>
  2851. </em>
  2852. </td>
  2853. <td>
  2854. </td>
  2855. </tr>
  2856. </tbody>
  2857. </table>
  2858. <h3 id="external-secrets.io/v1.ChefAuth">ChefAuth
  2859. </h3>
  2860. <p>
  2861. (<em>Appears on:</em>
  2862. <a href="#external-secrets.io/v1.ChefProvider">ChefProvider</a>)
  2863. </p>
  2864. <p>
  2865. <p>ChefAuth contains a secretRef for credentials.</p>
  2866. </p>
  2867. <table>
  2868. <thead>
  2869. <tr>
  2870. <th>Field</th>
  2871. <th>Description</th>
  2872. </tr>
  2873. </thead>
  2874. <tbody>
  2875. <tr>
  2876. <td>
  2877. <code>secretRef</code></br>
  2878. <em>
  2879. <a href="#external-secrets.io/v1.ChefAuthSecretRef">
  2880. ChefAuthSecretRef
  2881. </a>
  2882. </em>
  2883. </td>
  2884. <td>
  2885. </td>
  2886. </tr>
  2887. </tbody>
  2888. </table>
  2889. <h3 id="external-secrets.io/v1.ChefAuthSecretRef">ChefAuthSecretRef
  2890. </h3>
  2891. <p>
  2892. (<em>Appears on:</em>
  2893. <a href="#external-secrets.io/v1.ChefAuth">ChefAuth</a>)
  2894. </p>
  2895. <p>
  2896. <p>ChefAuthSecretRef holds secret references for chef server login credentials.</p>
  2897. </p>
  2898. <table>
  2899. <thead>
  2900. <tr>
  2901. <th>Field</th>
  2902. <th>Description</th>
  2903. </tr>
  2904. </thead>
  2905. <tbody>
  2906. <tr>
  2907. <td>
  2908. <code>privateKeySecretRef</code></br>
  2909. <em>
  2910. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2911. External Secrets meta/v1.SecretKeySelector
  2912. </a>
  2913. </em>
  2914. </td>
  2915. <td>
  2916. <p>SecretKey is the Signing Key in PEM format, used for authentication.</p>
  2917. </td>
  2918. </tr>
  2919. </tbody>
  2920. </table>
  2921. <h3 id="external-secrets.io/v1.ChefProvider">ChefProvider
  2922. </h3>
  2923. <p>
  2924. (<em>Appears on:</em>
  2925. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  2926. </p>
  2927. <p>
  2928. <p>ChefProvider configures a store to sync secrets using basic chef server connection credentials.</p>
  2929. </p>
  2930. <table>
  2931. <thead>
  2932. <tr>
  2933. <th>Field</th>
  2934. <th>Description</th>
  2935. </tr>
  2936. </thead>
  2937. <tbody>
  2938. <tr>
  2939. <td>
  2940. <code>auth</code></br>
  2941. <em>
  2942. <a href="#external-secrets.io/v1.ChefAuth">
  2943. ChefAuth
  2944. </a>
  2945. </em>
  2946. </td>
  2947. <td>
  2948. <p>Auth defines the information necessary to authenticate against chef Server</p>
  2949. </td>
  2950. </tr>
  2951. <tr>
  2952. <td>
  2953. <code>username</code></br>
  2954. <em>
  2955. string
  2956. </em>
  2957. </td>
  2958. <td>
  2959. <p>UserName should be the user ID on the chef server</p>
  2960. </td>
  2961. </tr>
  2962. <tr>
  2963. <td>
  2964. <code>serverUrl</code></br>
  2965. <em>
  2966. string
  2967. </em>
  2968. </td>
  2969. <td>
  2970. <p>ServerURL is the chef server URL used to connect to. If using orgs you should include your org in the url and terminate the url with a &ldquo;/&rdquo;</p>
  2971. </td>
  2972. </tr>
  2973. </tbody>
  2974. </table>
  2975. <h3 id="external-secrets.io/v1.CloudruSMProvider">CloudruSMProvider
  2976. </h3>
  2977. <p>
  2978. (<em>Appears on:</em>
  2979. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  2980. </p>
  2981. <p>
  2982. <p>CloudruSMProvider configures a store to sync secrets using the Cloud.ru Secret Manager provider.</p>
  2983. </p>
  2984. <table>
  2985. <thead>
  2986. <tr>
  2987. <th>Field</th>
  2988. <th>Description</th>
  2989. </tr>
  2990. </thead>
  2991. <tbody>
  2992. <tr>
  2993. <td>
  2994. <code>auth</code></br>
  2995. <em>
  2996. <a href="#external-secrets.io/v1.CSMAuth">
  2997. CSMAuth
  2998. </a>
  2999. </em>
  3000. </td>
  3001. <td>
  3002. </td>
  3003. </tr>
  3004. <tr>
  3005. <td>
  3006. <code>projectID</code></br>
  3007. <em>
  3008. string
  3009. </em>
  3010. </td>
  3011. <td>
  3012. <p>ProjectID is the project, which the secrets are stored in.</p>
  3013. </td>
  3014. </tr>
  3015. </tbody>
  3016. </table>
  3017. <h3 id="external-secrets.io/v1.ClusterExternalSecret">ClusterExternalSecret
  3018. </h3>
  3019. <p>
  3020. <p>ClusterExternalSecret is the Schema for the clusterexternalsecrets API.</p>
  3021. </p>
  3022. <table>
  3023. <thead>
  3024. <tr>
  3025. <th>Field</th>
  3026. <th>Description</th>
  3027. </tr>
  3028. </thead>
  3029. <tbody>
  3030. <tr>
  3031. <td>
  3032. <code>metadata</code></br>
  3033. <em>
  3034. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  3035. Kubernetes meta/v1.ObjectMeta
  3036. </a>
  3037. </em>
  3038. </td>
  3039. <td>
  3040. Refer to the Kubernetes API documentation for the fields of the
  3041. <code>metadata</code> field.
  3042. </td>
  3043. </tr>
  3044. <tr>
  3045. <td>
  3046. <code>spec</code></br>
  3047. <em>
  3048. <a href="#external-secrets.io/v1.ClusterExternalSecretSpec">
  3049. ClusterExternalSecretSpec
  3050. </a>
  3051. </em>
  3052. </td>
  3053. <td>
  3054. <br/>
  3055. <br/>
  3056. <table>
  3057. <tr>
  3058. <td>
  3059. <code>externalSecretSpec</code></br>
  3060. <em>
  3061. <a href="#external-secrets.io/v1.ExternalSecretSpec">
  3062. ExternalSecretSpec
  3063. </a>
  3064. </em>
  3065. </td>
  3066. <td>
  3067. <p>The spec for the ExternalSecrets to be created</p>
  3068. </td>
  3069. </tr>
  3070. <tr>
  3071. <td>
  3072. <code>externalSecretName</code></br>
  3073. <em>
  3074. string
  3075. </em>
  3076. </td>
  3077. <td>
  3078. <em>(Optional)</em>
  3079. <p>The name of the external secrets to be created.
  3080. Defaults to the name of the ClusterExternalSecret</p>
  3081. </td>
  3082. </tr>
  3083. <tr>
  3084. <td>
  3085. <code>externalSecretMetadata</code></br>
  3086. <em>
  3087. <a href="#external-secrets.io/v1.ExternalSecretMetadata">
  3088. ExternalSecretMetadata
  3089. </a>
  3090. </em>
  3091. </td>
  3092. <td>
  3093. <em>(Optional)</em>
  3094. <p>The metadata of the external secrets to be created</p>
  3095. </td>
  3096. </tr>
  3097. <tr>
  3098. <td>
  3099. <code>namespaceSelector</code></br>
  3100. <em>
  3101. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  3102. Kubernetes meta/v1.LabelSelector
  3103. </a>
  3104. </em>
  3105. </td>
  3106. <td>
  3107. <em>(Optional)</em>
  3108. <p>The labels to select by to find the Namespaces to create the ExternalSecrets in.
  3109. Deprecated: Use NamespaceSelectors instead.</p>
  3110. </td>
  3111. </tr>
  3112. <tr>
  3113. <td>
  3114. <code>namespaceSelectors</code></br>
  3115. <em>
  3116. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#*k8s.io/apimachinery/pkg/apis/meta/v1.labelselector--">
  3117. []*k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector
  3118. </a>
  3119. </em>
  3120. </td>
  3121. <td>
  3122. <em>(Optional)</em>
  3123. <p>A list of labels to select by to find the Namespaces to create the ExternalSecrets in. The selectors are ORed.</p>
  3124. </td>
  3125. </tr>
  3126. <tr>
  3127. <td>
  3128. <code>namespaces</code></br>
  3129. <em>
  3130. []string
  3131. </em>
  3132. </td>
  3133. <td>
  3134. <em>(Optional)</em>
  3135. <p>Choose namespaces by name. This field is ORed with anything that NamespaceSelectors ends up choosing.
  3136. Deprecated: Use NamespaceSelectors instead.</p>
  3137. </td>
  3138. </tr>
  3139. <tr>
  3140. <td>
  3141. <code>refreshTime</code></br>
  3142. <em>
  3143. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  3144. Kubernetes meta/v1.Duration
  3145. </a>
  3146. </em>
  3147. </td>
  3148. <td>
  3149. <p>The time in which the controller should reconcile its objects and recheck namespaces for labels.</p>
  3150. </td>
  3151. </tr>
  3152. </table>
  3153. </td>
  3154. </tr>
  3155. <tr>
  3156. <td>
  3157. <code>status</code></br>
  3158. <em>
  3159. <a href="#external-secrets.io/v1.ClusterExternalSecretStatus">
  3160. ClusterExternalSecretStatus
  3161. </a>
  3162. </em>
  3163. </td>
  3164. <td>
  3165. </td>
  3166. </tr>
  3167. </tbody>
  3168. </table>
  3169. <h3 id="external-secrets.io/v1.ClusterExternalSecretConditionType">ClusterExternalSecretConditionType
  3170. (<code>string</code> alias)</p></h3>
  3171. <p>
  3172. (<em>Appears on:</em>
  3173. <a href="#external-secrets.io/v1.ClusterExternalSecretStatusCondition">ClusterExternalSecretStatusCondition</a>)
  3174. </p>
  3175. <p>
  3176. </p>
  3177. <table>
  3178. <thead>
  3179. <tr>
  3180. <th>Value</th>
  3181. <th>Description</th>
  3182. </tr>
  3183. </thead>
  3184. <tbody><tr><td><p>&#34;Ready&#34;</p></td>
  3185. <td></td>
  3186. </tr></tbody>
  3187. </table>
  3188. <h3 id="external-secrets.io/v1.ClusterExternalSecretNamespaceFailure">ClusterExternalSecretNamespaceFailure
  3189. </h3>
  3190. <p>
  3191. (<em>Appears on:</em>
  3192. <a href="#external-secrets.io/v1.ClusterExternalSecretStatus">ClusterExternalSecretStatus</a>)
  3193. </p>
  3194. <p>
  3195. <p>ClusterExternalSecretNamespaceFailure represents a failed namespace deployment and it&rsquo;s reason.</p>
  3196. </p>
  3197. <table>
  3198. <thead>
  3199. <tr>
  3200. <th>Field</th>
  3201. <th>Description</th>
  3202. </tr>
  3203. </thead>
  3204. <tbody>
  3205. <tr>
  3206. <td>
  3207. <code>namespace</code></br>
  3208. <em>
  3209. string
  3210. </em>
  3211. </td>
  3212. <td>
  3213. <p>Namespace is the namespace that failed when trying to apply an ExternalSecret</p>
  3214. </td>
  3215. </tr>
  3216. <tr>
  3217. <td>
  3218. <code>reason</code></br>
  3219. <em>
  3220. string
  3221. </em>
  3222. </td>
  3223. <td>
  3224. <em>(Optional)</em>
  3225. <p>Reason is why the ExternalSecret failed to apply to the namespace</p>
  3226. </td>
  3227. </tr>
  3228. </tbody>
  3229. </table>
  3230. <h3 id="external-secrets.io/v1.ClusterExternalSecretSpec">ClusterExternalSecretSpec
  3231. </h3>
  3232. <p>
  3233. (<em>Appears on:</em>
  3234. <a href="#external-secrets.io/v1.ClusterExternalSecret">ClusterExternalSecret</a>)
  3235. </p>
  3236. <p>
  3237. <p>ClusterExternalSecretSpec defines the desired state of ClusterExternalSecret.</p>
  3238. </p>
  3239. <table>
  3240. <thead>
  3241. <tr>
  3242. <th>Field</th>
  3243. <th>Description</th>
  3244. </tr>
  3245. </thead>
  3246. <tbody>
  3247. <tr>
  3248. <td>
  3249. <code>externalSecretSpec</code></br>
  3250. <em>
  3251. <a href="#external-secrets.io/v1.ExternalSecretSpec">
  3252. ExternalSecretSpec
  3253. </a>
  3254. </em>
  3255. </td>
  3256. <td>
  3257. <p>The spec for the ExternalSecrets to be created</p>
  3258. </td>
  3259. </tr>
  3260. <tr>
  3261. <td>
  3262. <code>externalSecretName</code></br>
  3263. <em>
  3264. string
  3265. </em>
  3266. </td>
  3267. <td>
  3268. <em>(Optional)</em>
  3269. <p>The name of the external secrets to be created.
  3270. Defaults to the name of the ClusterExternalSecret</p>
  3271. </td>
  3272. </tr>
  3273. <tr>
  3274. <td>
  3275. <code>externalSecretMetadata</code></br>
  3276. <em>
  3277. <a href="#external-secrets.io/v1.ExternalSecretMetadata">
  3278. ExternalSecretMetadata
  3279. </a>
  3280. </em>
  3281. </td>
  3282. <td>
  3283. <em>(Optional)</em>
  3284. <p>The metadata of the external secrets to be created</p>
  3285. </td>
  3286. </tr>
  3287. <tr>
  3288. <td>
  3289. <code>namespaceSelector</code></br>
  3290. <em>
  3291. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  3292. Kubernetes meta/v1.LabelSelector
  3293. </a>
  3294. </em>
  3295. </td>
  3296. <td>
  3297. <em>(Optional)</em>
  3298. <p>The labels to select by to find the Namespaces to create the ExternalSecrets in.
  3299. Deprecated: Use NamespaceSelectors instead.</p>
  3300. </td>
  3301. </tr>
  3302. <tr>
  3303. <td>
  3304. <code>namespaceSelectors</code></br>
  3305. <em>
  3306. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#*k8s.io/apimachinery/pkg/apis/meta/v1.labelselector--">
  3307. []*k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector
  3308. </a>
  3309. </em>
  3310. </td>
  3311. <td>
  3312. <em>(Optional)</em>
  3313. <p>A list of labels to select by to find the Namespaces to create the ExternalSecrets in. The selectors are ORed.</p>
  3314. </td>
  3315. </tr>
  3316. <tr>
  3317. <td>
  3318. <code>namespaces</code></br>
  3319. <em>
  3320. []string
  3321. </em>
  3322. </td>
  3323. <td>
  3324. <em>(Optional)</em>
  3325. <p>Choose namespaces by name. This field is ORed with anything that NamespaceSelectors ends up choosing.
  3326. Deprecated: Use NamespaceSelectors instead.</p>
  3327. </td>
  3328. </tr>
  3329. <tr>
  3330. <td>
  3331. <code>refreshTime</code></br>
  3332. <em>
  3333. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  3334. Kubernetes meta/v1.Duration
  3335. </a>
  3336. </em>
  3337. </td>
  3338. <td>
  3339. <p>The time in which the controller should reconcile its objects and recheck namespaces for labels.</p>
  3340. </td>
  3341. </tr>
  3342. </tbody>
  3343. </table>
  3344. <h3 id="external-secrets.io/v1.ClusterExternalSecretStatus">ClusterExternalSecretStatus
  3345. </h3>
  3346. <p>
  3347. (<em>Appears on:</em>
  3348. <a href="#external-secrets.io/v1.ClusterExternalSecret">ClusterExternalSecret</a>)
  3349. </p>
  3350. <p>
  3351. <p>ClusterExternalSecretStatus defines the observed state of ClusterExternalSecret.</p>
  3352. </p>
  3353. <table>
  3354. <thead>
  3355. <tr>
  3356. <th>Field</th>
  3357. <th>Description</th>
  3358. </tr>
  3359. </thead>
  3360. <tbody>
  3361. <tr>
  3362. <td>
  3363. <code>externalSecretName</code></br>
  3364. <em>
  3365. string
  3366. </em>
  3367. </td>
  3368. <td>
  3369. <p>ExternalSecretName is the name of the ExternalSecrets created by the ClusterExternalSecret</p>
  3370. </td>
  3371. </tr>
  3372. <tr>
  3373. <td>
  3374. <code>failedNamespaces</code></br>
  3375. <em>
  3376. <a href="#external-secrets.io/v1.ClusterExternalSecretNamespaceFailure">
  3377. []ClusterExternalSecretNamespaceFailure
  3378. </a>
  3379. </em>
  3380. </td>
  3381. <td>
  3382. <em>(Optional)</em>
  3383. <p>Failed namespaces are the namespaces that failed to apply an ExternalSecret</p>
  3384. </td>
  3385. </tr>
  3386. <tr>
  3387. <td>
  3388. <code>provisionedNamespaces</code></br>
  3389. <em>
  3390. []string
  3391. </em>
  3392. </td>
  3393. <td>
  3394. <em>(Optional)</em>
  3395. <p>ProvisionedNamespaces are the namespaces where the ClusterExternalSecret has secrets</p>
  3396. </td>
  3397. </tr>
  3398. <tr>
  3399. <td>
  3400. <code>conditions</code></br>
  3401. <em>
  3402. <a href="#external-secrets.io/v1.ClusterExternalSecretStatusCondition">
  3403. []ClusterExternalSecretStatusCondition
  3404. </a>
  3405. </em>
  3406. </td>
  3407. <td>
  3408. <em>(Optional)</em>
  3409. </td>
  3410. </tr>
  3411. </tbody>
  3412. </table>
  3413. <h3 id="external-secrets.io/v1.ClusterExternalSecretStatusCondition">ClusterExternalSecretStatusCondition
  3414. </h3>
  3415. <p>
  3416. (<em>Appears on:</em>
  3417. <a href="#external-secrets.io/v1.ClusterExternalSecretStatus">ClusterExternalSecretStatus</a>)
  3418. </p>
  3419. <p>
  3420. </p>
  3421. <table>
  3422. <thead>
  3423. <tr>
  3424. <th>Field</th>
  3425. <th>Description</th>
  3426. </tr>
  3427. </thead>
  3428. <tbody>
  3429. <tr>
  3430. <td>
  3431. <code>type</code></br>
  3432. <em>
  3433. <a href="#external-secrets.io/v1.ClusterExternalSecretConditionType">
  3434. ClusterExternalSecretConditionType
  3435. </a>
  3436. </em>
  3437. </td>
  3438. <td>
  3439. </td>
  3440. </tr>
  3441. <tr>
  3442. <td>
  3443. <code>status</code></br>
  3444. <em>
  3445. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  3446. Kubernetes core/v1.ConditionStatus
  3447. </a>
  3448. </em>
  3449. </td>
  3450. <td>
  3451. </td>
  3452. </tr>
  3453. <tr>
  3454. <td>
  3455. <code>message</code></br>
  3456. <em>
  3457. string
  3458. </em>
  3459. </td>
  3460. <td>
  3461. <em>(Optional)</em>
  3462. </td>
  3463. </tr>
  3464. </tbody>
  3465. </table>
  3466. <h3 id="external-secrets.io/v1.ClusterSecretStore">ClusterSecretStore
  3467. </h3>
  3468. <p>
  3469. <p>ClusterSecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  3470. </p>
  3471. <table>
  3472. <thead>
  3473. <tr>
  3474. <th>Field</th>
  3475. <th>Description</th>
  3476. </tr>
  3477. </thead>
  3478. <tbody>
  3479. <tr>
  3480. <td>
  3481. <code>metadata</code></br>
  3482. <em>
  3483. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  3484. Kubernetes meta/v1.ObjectMeta
  3485. </a>
  3486. </em>
  3487. </td>
  3488. <td>
  3489. Refer to the Kubernetes API documentation for the fields of the
  3490. <code>metadata</code> field.
  3491. </td>
  3492. </tr>
  3493. <tr>
  3494. <td>
  3495. <code>spec</code></br>
  3496. <em>
  3497. <a href="#external-secrets.io/v1.SecretStoreSpec">
  3498. SecretStoreSpec
  3499. </a>
  3500. </em>
  3501. </td>
  3502. <td>
  3503. <br/>
  3504. <br/>
  3505. <table>
  3506. <tr>
  3507. <td>
  3508. <code>controller</code></br>
  3509. <em>
  3510. string
  3511. </em>
  3512. </td>
  3513. <td>
  3514. <em>(Optional)</em>
  3515. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  3516. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  3517. </td>
  3518. </tr>
  3519. <tr>
  3520. <td>
  3521. <code>provider</code></br>
  3522. <em>
  3523. <a href="#external-secrets.io/v1.SecretStoreProvider">
  3524. SecretStoreProvider
  3525. </a>
  3526. </em>
  3527. </td>
  3528. <td>
  3529. <p>Used to configure the provider. Only one provider may be set</p>
  3530. </td>
  3531. </tr>
  3532. <tr>
  3533. <td>
  3534. <code>retrySettings</code></br>
  3535. <em>
  3536. <a href="#external-secrets.io/v1.SecretStoreRetrySettings">
  3537. SecretStoreRetrySettings
  3538. </a>
  3539. </em>
  3540. </td>
  3541. <td>
  3542. <em>(Optional)</em>
  3543. <p>Used to configure http retries if failed</p>
  3544. </td>
  3545. </tr>
  3546. <tr>
  3547. <td>
  3548. <code>refreshInterval</code></br>
  3549. <em>
  3550. int
  3551. </em>
  3552. </td>
  3553. <td>
  3554. <em>(Optional)</em>
  3555. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  3556. </td>
  3557. </tr>
  3558. <tr>
  3559. <td>
  3560. <code>conditions</code></br>
  3561. <em>
  3562. <a href="#external-secrets.io/v1.ClusterSecretStoreCondition">
  3563. []ClusterSecretStoreCondition
  3564. </a>
  3565. </em>
  3566. </td>
  3567. <td>
  3568. <em>(Optional)</em>
  3569. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  3570. </td>
  3571. </tr>
  3572. </table>
  3573. </td>
  3574. </tr>
  3575. <tr>
  3576. <td>
  3577. <code>status</code></br>
  3578. <em>
  3579. <a href="#external-secrets.io/v1.SecretStoreStatus">
  3580. SecretStoreStatus
  3581. </a>
  3582. </em>
  3583. </td>
  3584. <td>
  3585. </td>
  3586. </tr>
  3587. </tbody>
  3588. </table>
  3589. <h3 id="external-secrets.io/v1.ClusterSecretStoreCondition">ClusterSecretStoreCondition
  3590. </h3>
  3591. <p>
  3592. (<em>Appears on:</em>
  3593. <a href="#external-secrets.io/v1.SecretStoreSpec">SecretStoreSpec</a>)
  3594. </p>
  3595. <p>
  3596. <p>ClusterSecretStoreCondition describes a condition by which to choose namespaces to process ExternalSecrets in
  3597. for a ClusterSecretStore instance.</p>
  3598. </p>
  3599. <table>
  3600. <thead>
  3601. <tr>
  3602. <th>Field</th>
  3603. <th>Description</th>
  3604. </tr>
  3605. </thead>
  3606. <tbody>
  3607. <tr>
  3608. <td>
  3609. <code>namespaceSelector</code></br>
  3610. <em>
  3611. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  3612. Kubernetes meta/v1.LabelSelector
  3613. </a>
  3614. </em>
  3615. </td>
  3616. <td>
  3617. <em>(Optional)</em>
  3618. <p>Choose namespace using a labelSelector</p>
  3619. </td>
  3620. </tr>
  3621. <tr>
  3622. <td>
  3623. <code>namespaces</code></br>
  3624. <em>
  3625. []string
  3626. </em>
  3627. </td>
  3628. <td>
  3629. <em>(Optional)</em>
  3630. <p>Choose namespaces by name</p>
  3631. </td>
  3632. </tr>
  3633. <tr>
  3634. <td>
  3635. <code>namespaceRegexes</code></br>
  3636. <em>
  3637. []string
  3638. </em>
  3639. </td>
  3640. <td>
  3641. <em>(Optional)</em>
  3642. <p>Choose namespaces by using regex matching</p>
  3643. </td>
  3644. </tr>
  3645. </tbody>
  3646. </table>
  3647. <h3 id="external-secrets.io/v1.ConjurAPIKey">ConjurAPIKey
  3648. </h3>
  3649. <p>
  3650. (<em>Appears on:</em>
  3651. <a href="#external-secrets.io/v1.ConjurAuth">ConjurAuth</a>)
  3652. </p>
  3653. <p>
  3654. </p>
  3655. <table>
  3656. <thead>
  3657. <tr>
  3658. <th>Field</th>
  3659. <th>Description</th>
  3660. </tr>
  3661. </thead>
  3662. <tbody>
  3663. <tr>
  3664. <td>
  3665. <code>account</code></br>
  3666. <em>
  3667. string
  3668. </em>
  3669. </td>
  3670. <td>
  3671. <p>Account is the Conjur organization account name.</p>
  3672. </td>
  3673. </tr>
  3674. <tr>
  3675. <td>
  3676. <code>userRef</code></br>
  3677. <em>
  3678. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3679. External Secrets meta/v1.SecretKeySelector
  3680. </a>
  3681. </em>
  3682. </td>
  3683. <td>
  3684. <p>A reference to a specific &lsquo;key&rsquo; containing the Conjur username
  3685. within a Secret resource. In some instances, <code>key</code> is a required field.</p>
  3686. </td>
  3687. </tr>
  3688. <tr>
  3689. <td>
  3690. <code>apiKeyRef</code></br>
  3691. <em>
  3692. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3693. External Secrets meta/v1.SecretKeySelector
  3694. </a>
  3695. </em>
  3696. </td>
  3697. <td>
  3698. <p>A reference to a specific &lsquo;key&rsquo; containing the Conjur API key
  3699. within a Secret resource. In some instances, <code>key</code> is a required field.</p>
  3700. </td>
  3701. </tr>
  3702. </tbody>
  3703. </table>
  3704. <h3 id="external-secrets.io/v1.ConjurAuth">ConjurAuth
  3705. </h3>
  3706. <p>
  3707. (<em>Appears on:</em>
  3708. <a href="#external-secrets.io/v1.ConjurProvider">ConjurProvider</a>)
  3709. </p>
  3710. <p>
  3711. </p>
  3712. <table>
  3713. <thead>
  3714. <tr>
  3715. <th>Field</th>
  3716. <th>Description</th>
  3717. </tr>
  3718. </thead>
  3719. <tbody>
  3720. <tr>
  3721. <td>
  3722. <code>apikey</code></br>
  3723. <em>
  3724. <a href="#external-secrets.io/v1.ConjurAPIKey">
  3725. ConjurAPIKey
  3726. </a>
  3727. </em>
  3728. </td>
  3729. <td>
  3730. <em>(Optional)</em>
  3731. <p>Authenticates with Conjur using an API key.</p>
  3732. </td>
  3733. </tr>
  3734. <tr>
  3735. <td>
  3736. <code>jwt</code></br>
  3737. <em>
  3738. <a href="#external-secrets.io/v1.ConjurJWT">
  3739. ConjurJWT
  3740. </a>
  3741. </em>
  3742. </td>
  3743. <td>
  3744. <em>(Optional)</em>
  3745. <p>Jwt enables JWT authentication using Kubernetes service account tokens.</p>
  3746. </td>
  3747. </tr>
  3748. </tbody>
  3749. </table>
  3750. <h3 id="external-secrets.io/v1.ConjurJWT">ConjurJWT
  3751. </h3>
  3752. <p>
  3753. (<em>Appears on:</em>
  3754. <a href="#external-secrets.io/v1.ConjurAuth">ConjurAuth</a>)
  3755. </p>
  3756. <p>
  3757. </p>
  3758. <table>
  3759. <thead>
  3760. <tr>
  3761. <th>Field</th>
  3762. <th>Description</th>
  3763. </tr>
  3764. </thead>
  3765. <tbody>
  3766. <tr>
  3767. <td>
  3768. <code>account</code></br>
  3769. <em>
  3770. string
  3771. </em>
  3772. </td>
  3773. <td>
  3774. <p>Account is the Conjur organization account name.</p>
  3775. </td>
  3776. </tr>
  3777. <tr>
  3778. <td>
  3779. <code>serviceID</code></br>
  3780. <em>
  3781. string
  3782. </em>
  3783. </td>
  3784. <td>
  3785. <p>The conjur authn jwt webservice id</p>
  3786. </td>
  3787. </tr>
  3788. <tr>
  3789. <td>
  3790. <code>hostId</code></br>
  3791. <em>
  3792. string
  3793. </em>
  3794. </td>
  3795. <td>
  3796. <em>(Optional)</em>
  3797. <p>Optional HostID for JWT authentication. This may be used depending
  3798. on how the Conjur JWT authenticator policy is configured.</p>
  3799. </td>
  3800. </tr>
  3801. <tr>
  3802. <td>
  3803. <code>secretRef</code></br>
  3804. <em>
  3805. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3806. External Secrets meta/v1.SecretKeySelector
  3807. </a>
  3808. </em>
  3809. </td>
  3810. <td>
  3811. <em>(Optional)</em>
  3812. <p>Optional SecretRef that refers to a key in a Secret resource containing JWT token to
  3813. authenticate with Conjur using the JWT authentication method.</p>
  3814. </td>
  3815. </tr>
  3816. <tr>
  3817. <td>
  3818. <code>serviceAccountRef</code></br>
  3819. <em>
  3820. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  3821. External Secrets meta/v1.ServiceAccountSelector
  3822. </a>
  3823. </em>
  3824. </td>
  3825. <td>
  3826. <em>(Optional)</em>
  3827. <p>Optional ServiceAccountRef specifies the Kubernetes service account for which to request
  3828. a token for with the <code>TokenRequest</code> API.</p>
  3829. </td>
  3830. </tr>
  3831. </tbody>
  3832. </table>
  3833. <h3 id="external-secrets.io/v1.ConjurProvider">ConjurProvider
  3834. </h3>
  3835. <p>
  3836. (<em>Appears on:</em>
  3837. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  3838. </p>
  3839. <p>
  3840. </p>
  3841. <table>
  3842. <thead>
  3843. <tr>
  3844. <th>Field</th>
  3845. <th>Description</th>
  3846. </tr>
  3847. </thead>
  3848. <tbody>
  3849. <tr>
  3850. <td>
  3851. <code>url</code></br>
  3852. <em>
  3853. string
  3854. </em>
  3855. </td>
  3856. <td>
  3857. <p>URL is the endpoint of the Conjur instance.</p>
  3858. </td>
  3859. </tr>
  3860. <tr>
  3861. <td>
  3862. <code>caBundle</code></br>
  3863. <em>
  3864. string
  3865. </em>
  3866. </td>
  3867. <td>
  3868. <em>(Optional)</em>
  3869. <p>CABundle is a PEM encoded CA bundle that will be used to validate the Conjur server certificate.</p>
  3870. </td>
  3871. </tr>
  3872. <tr>
  3873. <td>
  3874. <code>caProvider</code></br>
  3875. <em>
  3876. <a href="#external-secrets.io/v1.CAProvider">
  3877. CAProvider
  3878. </a>
  3879. </em>
  3880. </td>
  3881. <td>
  3882. <em>(Optional)</em>
  3883. <p>Used to provide custom certificate authority (CA) certificates
  3884. for a secret store. The CAProvider points to a Secret or ConfigMap resource
  3885. that contains a PEM-encoded certificate.</p>
  3886. </td>
  3887. </tr>
  3888. <tr>
  3889. <td>
  3890. <code>auth</code></br>
  3891. <em>
  3892. <a href="#external-secrets.io/v1.ConjurAuth">
  3893. ConjurAuth
  3894. </a>
  3895. </em>
  3896. </td>
  3897. <td>
  3898. <p>Defines authentication settings for connecting to Conjur.</p>
  3899. </td>
  3900. </tr>
  3901. </tbody>
  3902. </table>
  3903. <h3 id="external-secrets.io/v1.DelineaProvider">DelineaProvider
  3904. </h3>
  3905. <p>
  3906. (<em>Appears on:</em>
  3907. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  3908. </p>
  3909. <p>
  3910. <p>See <a href="https://github.com/DelineaXPM/dsv-sdk-go/blob/main/vault/vault.go">https://github.com/DelineaXPM/dsv-sdk-go/blob/main/vault/vault.go</a>.</p>
  3911. </p>
  3912. <table>
  3913. <thead>
  3914. <tr>
  3915. <th>Field</th>
  3916. <th>Description</th>
  3917. </tr>
  3918. </thead>
  3919. <tbody>
  3920. <tr>
  3921. <td>
  3922. <code>clientId</code></br>
  3923. <em>
  3924. <a href="#external-secrets.io/v1.DelineaProviderSecretRef">
  3925. DelineaProviderSecretRef
  3926. </a>
  3927. </em>
  3928. </td>
  3929. <td>
  3930. <p>ClientID is the non-secret part of the credential.</p>
  3931. </td>
  3932. </tr>
  3933. <tr>
  3934. <td>
  3935. <code>clientSecret</code></br>
  3936. <em>
  3937. <a href="#external-secrets.io/v1.DelineaProviderSecretRef">
  3938. DelineaProviderSecretRef
  3939. </a>
  3940. </em>
  3941. </td>
  3942. <td>
  3943. <p>ClientSecret is the secret part of the credential.</p>
  3944. </td>
  3945. </tr>
  3946. <tr>
  3947. <td>
  3948. <code>tenant</code></br>
  3949. <em>
  3950. string
  3951. </em>
  3952. </td>
  3953. <td>
  3954. <p>Tenant is the chosen hostname / site name.</p>
  3955. </td>
  3956. </tr>
  3957. <tr>
  3958. <td>
  3959. <code>urlTemplate</code></br>
  3960. <em>
  3961. string
  3962. </em>
  3963. </td>
  3964. <td>
  3965. <em>(Optional)</em>
  3966. <p>URLTemplate
  3967. If unset, defaults to &ldquo;https://%s.secretsvaultcloud.%s/v1/%s%s&rdquo;.</p>
  3968. </td>
  3969. </tr>
  3970. <tr>
  3971. <td>
  3972. <code>tld</code></br>
  3973. <em>
  3974. string
  3975. </em>
  3976. </td>
  3977. <td>
  3978. <em>(Optional)</em>
  3979. <p>TLD is based on the server location that was chosen during provisioning.
  3980. If unset, defaults to &ldquo;com&rdquo;.</p>
  3981. </td>
  3982. </tr>
  3983. </tbody>
  3984. </table>
  3985. <h3 id="external-secrets.io/v1.DelineaProviderSecretRef">DelineaProviderSecretRef
  3986. </h3>
  3987. <p>
  3988. (<em>Appears on:</em>
  3989. <a href="#external-secrets.io/v1.DelineaProvider">DelineaProvider</a>)
  3990. </p>
  3991. <p>
  3992. </p>
  3993. <table>
  3994. <thead>
  3995. <tr>
  3996. <th>Field</th>
  3997. <th>Description</th>
  3998. </tr>
  3999. </thead>
  4000. <tbody>
  4001. <tr>
  4002. <td>
  4003. <code>value</code></br>
  4004. <em>
  4005. string
  4006. </em>
  4007. </td>
  4008. <td>
  4009. <em>(Optional)</em>
  4010. <p>Value can be specified directly to set a value without using a secret.</p>
  4011. </td>
  4012. </tr>
  4013. <tr>
  4014. <td>
  4015. <code>secretRef</code></br>
  4016. <em>
  4017. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4018. External Secrets meta/v1.SecretKeySelector
  4019. </a>
  4020. </em>
  4021. </td>
  4022. <td>
  4023. <em>(Optional)</em>
  4024. <p>SecretRef references a key in a secret that will be used as value.</p>
  4025. </td>
  4026. </tr>
  4027. </tbody>
  4028. </table>
  4029. <h3 id="external-secrets.io/v1.Device42Auth">Device42Auth
  4030. </h3>
  4031. <p>
  4032. (<em>Appears on:</em>
  4033. <a href="#external-secrets.io/v1.Device42Provider">Device42Provider</a>)
  4034. </p>
  4035. <p>
  4036. </p>
  4037. <table>
  4038. <thead>
  4039. <tr>
  4040. <th>Field</th>
  4041. <th>Description</th>
  4042. </tr>
  4043. </thead>
  4044. <tbody>
  4045. <tr>
  4046. <td>
  4047. <code>secretRef</code></br>
  4048. <em>
  4049. <a href="#external-secrets.io/v1.Device42SecretRef">
  4050. Device42SecretRef
  4051. </a>
  4052. </em>
  4053. </td>
  4054. <td>
  4055. </td>
  4056. </tr>
  4057. </tbody>
  4058. </table>
  4059. <h3 id="external-secrets.io/v1.Device42Provider">Device42Provider
  4060. </h3>
  4061. <p>
  4062. (<em>Appears on:</em>
  4063. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  4064. </p>
  4065. <p>
  4066. <p>Device42Provider configures a store to sync secrets with a Device42 instance.</p>
  4067. </p>
  4068. <table>
  4069. <thead>
  4070. <tr>
  4071. <th>Field</th>
  4072. <th>Description</th>
  4073. </tr>
  4074. </thead>
  4075. <tbody>
  4076. <tr>
  4077. <td>
  4078. <code>host</code></br>
  4079. <em>
  4080. string
  4081. </em>
  4082. </td>
  4083. <td>
  4084. <p>URL configures the Device42 instance URL.</p>
  4085. </td>
  4086. </tr>
  4087. <tr>
  4088. <td>
  4089. <code>auth</code></br>
  4090. <em>
  4091. <a href="#external-secrets.io/v1.Device42Auth">
  4092. Device42Auth
  4093. </a>
  4094. </em>
  4095. </td>
  4096. <td>
  4097. <p>Auth configures how secret-manager authenticates with a Device42 instance.</p>
  4098. </td>
  4099. </tr>
  4100. </tbody>
  4101. </table>
  4102. <h3 id="external-secrets.io/v1.Device42SecretRef">Device42SecretRef
  4103. </h3>
  4104. <p>
  4105. (<em>Appears on:</em>
  4106. <a href="#external-secrets.io/v1.Device42Auth">Device42Auth</a>)
  4107. </p>
  4108. <p>
  4109. </p>
  4110. <table>
  4111. <thead>
  4112. <tr>
  4113. <th>Field</th>
  4114. <th>Description</th>
  4115. </tr>
  4116. </thead>
  4117. <tbody>
  4118. <tr>
  4119. <td>
  4120. <code>credentials</code></br>
  4121. <em>
  4122. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4123. External Secrets meta/v1.SecretKeySelector
  4124. </a>
  4125. </em>
  4126. </td>
  4127. <td>
  4128. <em>(Optional)</em>
  4129. <p>Username / Password is used for authentication.</p>
  4130. </td>
  4131. </tr>
  4132. </tbody>
  4133. </table>
  4134. <h3 id="external-secrets.io/v1.DopplerAuth">DopplerAuth
  4135. </h3>
  4136. <p>
  4137. (<em>Appears on:</em>
  4138. <a href="#external-secrets.io/v1.DopplerProvider">DopplerProvider</a>)
  4139. </p>
  4140. <p>
  4141. </p>
  4142. <table>
  4143. <thead>
  4144. <tr>
  4145. <th>Field</th>
  4146. <th>Description</th>
  4147. </tr>
  4148. </thead>
  4149. <tbody>
  4150. <tr>
  4151. <td>
  4152. <code>secretRef</code></br>
  4153. <em>
  4154. <a href="#external-secrets.io/v1.DopplerAuthSecretRef">
  4155. DopplerAuthSecretRef
  4156. </a>
  4157. </em>
  4158. </td>
  4159. <td>
  4160. </td>
  4161. </tr>
  4162. </tbody>
  4163. </table>
  4164. <h3 id="external-secrets.io/v1.DopplerAuthSecretRef">DopplerAuthSecretRef
  4165. </h3>
  4166. <p>
  4167. (<em>Appears on:</em>
  4168. <a href="#external-secrets.io/v1.DopplerAuth">DopplerAuth</a>)
  4169. </p>
  4170. <p>
  4171. </p>
  4172. <table>
  4173. <thead>
  4174. <tr>
  4175. <th>Field</th>
  4176. <th>Description</th>
  4177. </tr>
  4178. </thead>
  4179. <tbody>
  4180. <tr>
  4181. <td>
  4182. <code>dopplerToken</code></br>
  4183. <em>
  4184. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4185. External Secrets meta/v1.SecretKeySelector
  4186. </a>
  4187. </em>
  4188. </td>
  4189. <td>
  4190. <p>The DopplerToken is used for authentication.
  4191. See <a href="https://docs.doppler.com/reference/api#authentication">https://docs.doppler.com/reference/api#authentication</a> for auth token types.
  4192. The Key attribute defaults to dopplerToken if not specified.</p>
  4193. </td>
  4194. </tr>
  4195. </tbody>
  4196. </table>
  4197. <h3 id="external-secrets.io/v1.DopplerProvider">DopplerProvider
  4198. </h3>
  4199. <p>
  4200. (<em>Appears on:</em>
  4201. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  4202. </p>
  4203. <p>
  4204. <p>DopplerProvider configures a store to sync secrets using the Doppler provider.
  4205. Project and Config are required if not using a Service Token.</p>
  4206. </p>
  4207. <table>
  4208. <thead>
  4209. <tr>
  4210. <th>Field</th>
  4211. <th>Description</th>
  4212. </tr>
  4213. </thead>
  4214. <tbody>
  4215. <tr>
  4216. <td>
  4217. <code>auth</code></br>
  4218. <em>
  4219. <a href="#external-secrets.io/v1.DopplerAuth">
  4220. DopplerAuth
  4221. </a>
  4222. </em>
  4223. </td>
  4224. <td>
  4225. <p>Auth configures how the Operator authenticates with the Doppler API</p>
  4226. </td>
  4227. </tr>
  4228. <tr>
  4229. <td>
  4230. <code>project</code></br>
  4231. <em>
  4232. string
  4233. </em>
  4234. </td>
  4235. <td>
  4236. <em>(Optional)</em>
  4237. <p>Doppler project (required if not using a Service Token)</p>
  4238. </td>
  4239. </tr>
  4240. <tr>
  4241. <td>
  4242. <code>config</code></br>
  4243. <em>
  4244. string
  4245. </em>
  4246. </td>
  4247. <td>
  4248. <em>(Optional)</em>
  4249. <p>Doppler config (required if not using a Service Token)</p>
  4250. </td>
  4251. </tr>
  4252. <tr>
  4253. <td>
  4254. <code>nameTransformer</code></br>
  4255. <em>
  4256. string
  4257. </em>
  4258. </td>
  4259. <td>
  4260. <em>(Optional)</em>
  4261. <p>Environment variable compatible name transforms that change secret names to a different format</p>
  4262. </td>
  4263. </tr>
  4264. <tr>
  4265. <td>
  4266. <code>format</code></br>
  4267. <em>
  4268. string
  4269. </em>
  4270. </td>
  4271. <td>
  4272. <em>(Optional)</em>
  4273. <p>Format enables the downloading of secrets as a file (string)</p>
  4274. </td>
  4275. </tr>
  4276. </tbody>
  4277. </table>
  4278. <h3 id="external-secrets.io/v1.ExternalSecret">ExternalSecret
  4279. </h3>
  4280. <p>
  4281. <p>ExternalSecret is the Schema for the external-secrets API.</p>
  4282. </p>
  4283. <table>
  4284. <thead>
  4285. <tr>
  4286. <th>Field</th>
  4287. <th>Description</th>
  4288. </tr>
  4289. </thead>
  4290. <tbody>
  4291. <tr>
  4292. <td>
  4293. <code>metadata</code></br>
  4294. <em>
  4295. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  4296. Kubernetes meta/v1.ObjectMeta
  4297. </a>
  4298. </em>
  4299. </td>
  4300. <td>
  4301. Refer to the Kubernetes API documentation for the fields of the
  4302. <code>metadata</code> field.
  4303. </td>
  4304. </tr>
  4305. <tr>
  4306. <td>
  4307. <code>spec</code></br>
  4308. <em>
  4309. <a href="#external-secrets.io/v1.ExternalSecretSpec">
  4310. ExternalSecretSpec
  4311. </a>
  4312. </em>
  4313. </td>
  4314. <td>
  4315. <br/>
  4316. <br/>
  4317. <table>
  4318. <tr>
  4319. <td>
  4320. <code>secretStoreRef</code></br>
  4321. <em>
  4322. <a href="#external-secrets.io/v1.SecretStoreRef">
  4323. SecretStoreRef
  4324. </a>
  4325. </em>
  4326. </td>
  4327. <td>
  4328. <em>(Optional)</em>
  4329. </td>
  4330. </tr>
  4331. <tr>
  4332. <td>
  4333. <code>target</code></br>
  4334. <em>
  4335. <a href="#external-secrets.io/v1.ExternalSecretTarget">
  4336. ExternalSecretTarget
  4337. </a>
  4338. </em>
  4339. </td>
  4340. <td>
  4341. <em>(Optional)</em>
  4342. </td>
  4343. </tr>
  4344. <tr>
  4345. <td>
  4346. <code>refreshPolicy</code></br>
  4347. <em>
  4348. <a href="#external-secrets.io/v1.ExternalSecretRefreshPolicy">
  4349. ExternalSecretRefreshPolicy
  4350. </a>
  4351. </em>
  4352. </td>
  4353. <td>
  4354. <em>(Optional)</em>
  4355. <p>RefreshPolicy determines how the ExternalSecret should be refreshed:
  4356. - CreatedOnce: Creates the Secret only if it does not exist and does not update it thereafter
  4357. - Periodic: Synchronizes the Secret from the external source at regular intervals specified by refreshInterval.
  4358. No periodic updates occur if refreshInterval is 0.
  4359. - OnChange: Only synchronizes the Secret when the ExternalSecret&rsquo;s metadata or specification changes</p>
  4360. </td>
  4361. </tr>
  4362. <tr>
  4363. <td>
  4364. <code>refreshInterval</code></br>
  4365. <em>
  4366. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  4367. Kubernetes meta/v1.Duration
  4368. </a>
  4369. </em>
  4370. </td>
  4371. <td>
  4372. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider,
  4373. specified as Golang Duration strings.
  4374. Valid time units are &ldquo;ns&rdquo;, &ldquo;us&rdquo; (or &ldquo;µs&rdquo;), &ldquo;ms&rdquo;, &ldquo;s&rdquo;, &ldquo;m&rdquo;, &ldquo;h&rdquo;
  4375. Example values: &ldquo;1h&rdquo;, &ldquo;2h30m&rdquo;, &ldquo;10s&rdquo;
  4376. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  4377. </td>
  4378. </tr>
  4379. <tr>
  4380. <td>
  4381. <code>data</code></br>
  4382. <em>
  4383. <a href="#external-secrets.io/v1.ExternalSecretData">
  4384. []ExternalSecretData
  4385. </a>
  4386. </em>
  4387. </td>
  4388. <td>
  4389. <em>(Optional)</em>
  4390. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  4391. </td>
  4392. </tr>
  4393. <tr>
  4394. <td>
  4395. <code>dataFrom</code></br>
  4396. <em>
  4397. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">
  4398. []ExternalSecretDataFromRemoteRef
  4399. </a>
  4400. </em>
  4401. </td>
  4402. <td>
  4403. <em>(Optional)</em>
  4404. <p>DataFrom is used to fetch all properties from a specific Provider data
  4405. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  4406. </td>
  4407. </tr>
  4408. </table>
  4409. </td>
  4410. </tr>
  4411. <tr>
  4412. <td>
  4413. <code>status</code></br>
  4414. <em>
  4415. <a href="#external-secrets.io/v1.ExternalSecretStatus">
  4416. ExternalSecretStatus
  4417. </a>
  4418. </em>
  4419. </td>
  4420. <td>
  4421. </td>
  4422. </tr>
  4423. </tbody>
  4424. </table>
  4425. <h3 id="external-secrets.io/v1.ExternalSecretConditionType">ExternalSecretConditionType
  4426. (<code>string</code> alias)</p></h3>
  4427. <p>
  4428. (<em>Appears on:</em>
  4429. <a href="#external-secrets.io/v1.ExternalSecretStatusCondition">ExternalSecretStatusCondition</a>)
  4430. </p>
  4431. <p>
  4432. </p>
  4433. <table>
  4434. <thead>
  4435. <tr>
  4436. <th>Value</th>
  4437. <th>Description</th>
  4438. </tr>
  4439. </thead>
  4440. <tbody><tr><td><p>&#34;Deleted&#34;</p></td>
  4441. <td></td>
  4442. </tr><tr><td><p>&#34;Ready&#34;</p></td>
  4443. <td></td>
  4444. </tr></tbody>
  4445. </table>
  4446. <h3 id="external-secrets.io/v1.ExternalSecretConversionStrategy">ExternalSecretConversionStrategy
  4447. (<code>string</code> alias)</p></h3>
  4448. <p>
  4449. (<em>Appears on:</em>
  4450. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>,
  4451. <a href="#external-secrets.io/v1.ExternalSecretFind">ExternalSecretFind</a>)
  4452. </p>
  4453. <p>
  4454. </p>
  4455. <table>
  4456. <thead>
  4457. <tr>
  4458. <th>Value</th>
  4459. <th>Description</th>
  4460. </tr>
  4461. </thead>
  4462. <tbody><tr><td><p>&#34;Default&#34;</p></td>
  4463. <td></td>
  4464. </tr><tr><td><p>&#34;Unicode&#34;</p></td>
  4465. <td></td>
  4466. </tr></tbody>
  4467. </table>
  4468. <h3 id="external-secrets.io/v1.ExternalSecretCreationPolicy">ExternalSecretCreationPolicy
  4469. (<code>string</code> alias)</p></h3>
  4470. <p>
  4471. (<em>Appears on:</em>
  4472. <a href="#external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget</a>)
  4473. </p>
  4474. <p>
  4475. <p>ExternalSecretCreationPolicy defines rules on how to create the resulting Secret.</p>
  4476. </p>
  4477. <table>
  4478. <thead>
  4479. <tr>
  4480. <th>Value</th>
  4481. <th>Description</th>
  4482. </tr>
  4483. </thead>
  4484. <tbody><tr><td><p>&#34;Merge&#34;</p></td>
  4485. <td><p>Merge does not create the Secret, but merges the data fields to the Secret.</p>
  4486. </td>
  4487. </tr><tr><td><p>&#34;None&#34;</p></td>
  4488. <td><p>None does not create a Secret (future use with injector).</p>
  4489. </td>
  4490. </tr><tr><td><p>&#34;Orphan&#34;</p></td>
  4491. <td><p>Orphan creates the Secret and does not set the ownerReference.
  4492. I.e. it will be orphaned after the deletion of the ExternalSecret.</p>
  4493. </td>
  4494. </tr><tr><td><p>&#34;Owner&#34;</p></td>
  4495. <td><p>Owner creates the Secret and sets .metadata.ownerReferences to the ExternalSecret resource.</p>
  4496. </td>
  4497. </tr></tbody>
  4498. </table>
  4499. <h3 id="external-secrets.io/v1.ExternalSecretData">ExternalSecretData
  4500. </h3>
  4501. <p>
  4502. (<em>Appears on:</em>
  4503. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>)
  4504. </p>
  4505. <p>
  4506. <p>ExternalSecretData defines the connection between the Kubernetes Secret key (spec.data.<key>) and the Provider data.</p>
  4507. </p>
  4508. <table>
  4509. <thead>
  4510. <tr>
  4511. <th>Field</th>
  4512. <th>Description</th>
  4513. </tr>
  4514. </thead>
  4515. <tbody>
  4516. <tr>
  4517. <td>
  4518. <code>secretKey</code></br>
  4519. <em>
  4520. string
  4521. </em>
  4522. </td>
  4523. <td>
  4524. <p>The key in the Kubernetes Secret to store the value.</p>
  4525. </td>
  4526. </tr>
  4527. <tr>
  4528. <td>
  4529. <code>remoteRef</code></br>
  4530. <em>
  4531. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">
  4532. ExternalSecretDataRemoteRef
  4533. </a>
  4534. </em>
  4535. </td>
  4536. <td>
  4537. <p>RemoteRef points to the remote secret and defines
  4538. which secret (version/property/..) to fetch.</p>
  4539. </td>
  4540. </tr>
  4541. <tr>
  4542. <td>
  4543. <code>sourceRef</code></br>
  4544. <em>
  4545. <a href="#external-secrets.io/v1.StoreSourceRef">
  4546. StoreSourceRef
  4547. </a>
  4548. </em>
  4549. </td>
  4550. <td>
  4551. <p>SourceRef allows you to override the source
  4552. from which the value will be pulled.</p>
  4553. </td>
  4554. </tr>
  4555. </tbody>
  4556. </table>
  4557. <h3 id="external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef
  4558. </h3>
  4559. <p>
  4560. (<em>Appears on:</em>
  4561. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>)
  4562. </p>
  4563. <p>
  4564. </p>
  4565. <table>
  4566. <thead>
  4567. <tr>
  4568. <th>Field</th>
  4569. <th>Description</th>
  4570. </tr>
  4571. </thead>
  4572. <tbody>
  4573. <tr>
  4574. <td>
  4575. <code>extract</code></br>
  4576. <em>
  4577. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">
  4578. ExternalSecretDataRemoteRef
  4579. </a>
  4580. </em>
  4581. </td>
  4582. <td>
  4583. <em>(Optional)</em>
  4584. <p>Used to extract multiple key/value pairs from one secret
  4585. Note: Extract does not support sourceRef.Generator or sourceRef.GeneratorRef.</p>
  4586. </td>
  4587. </tr>
  4588. <tr>
  4589. <td>
  4590. <code>find</code></br>
  4591. <em>
  4592. <a href="#external-secrets.io/v1.ExternalSecretFind">
  4593. ExternalSecretFind
  4594. </a>
  4595. </em>
  4596. </td>
  4597. <td>
  4598. <em>(Optional)</em>
  4599. <p>Used to find secrets based on tags or regular expressions
  4600. Note: Find does not support sourceRef.Generator or sourceRef.GeneratorRef.</p>
  4601. </td>
  4602. </tr>
  4603. <tr>
  4604. <td>
  4605. <code>rewrite</code></br>
  4606. <em>
  4607. <a href="#external-secrets.io/v1.ExternalSecretRewrite">
  4608. []ExternalSecretRewrite
  4609. </a>
  4610. </em>
  4611. </td>
  4612. <td>
  4613. <em>(Optional)</em>
  4614. <p>Used to rewrite secret Keys after getting them from the secret Provider
  4615. Multiple Rewrite operations can be provided. They are applied in a layered order (first to last)</p>
  4616. </td>
  4617. </tr>
  4618. <tr>
  4619. <td>
  4620. <code>sourceRef</code></br>
  4621. <em>
  4622. <a href="#external-secrets.io/v1.StoreGeneratorSourceRef">
  4623. StoreGeneratorSourceRef
  4624. </a>
  4625. </em>
  4626. </td>
  4627. <td>
  4628. <p>SourceRef points to a store or generator
  4629. which contains secret values ready to use.
  4630. Use this in combination with Extract or Find pull values out of
  4631. a specific SecretStore.
  4632. When sourceRef points to a generator Extract or Find is not supported.
  4633. The generator returns a static map of values</p>
  4634. </td>
  4635. </tr>
  4636. </tbody>
  4637. </table>
  4638. <h3 id="external-secrets.io/v1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef
  4639. </h3>
  4640. <p>
  4641. (<em>Appears on:</em>
  4642. <a href="#external-secrets.io/v1.ExternalSecretData">ExternalSecretData</a>,
  4643. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  4644. </p>
  4645. <p>
  4646. <p>ExternalSecretDataRemoteRef defines Provider data location.</p>
  4647. </p>
  4648. <table>
  4649. <thead>
  4650. <tr>
  4651. <th>Field</th>
  4652. <th>Description</th>
  4653. </tr>
  4654. </thead>
  4655. <tbody>
  4656. <tr>
  4657. <td>
  4658. <code>key</code></br>
  4659. <em>
  4660. string
  4661. </em>
  4662. </td>
  4663. <td>
  4664. <p>Key is the key used in the Provider, mandatory</p>
  4665. </td>
  4666. </tr>
  4667. <tr>
  4668. <td>
  4669. <code>metadataPolicy</code></br>
  4670. <em>
  4671. <a href="#external-secrets.io/v1.ExternalSecretMetadataPolicy">
  4672. ExternalSecretMetadataPolicy
  4673. </a>
  4674. </em>
  4675. </td>
  4676. <td>
  4677. <em>(Optional)</em>
  4678. <p>Policy for fetching tags/labels from provider secrets, possible options are Fetch, None. Defaults to None</p>
  4679. </td>
  4680. </tr>
  4681. <tr>
  4682. <td>
  4683. <code>property</code></br>
  4684. <em>
  4685. string
  4686. </em>
  4687. </td>
  4688. <td>
  4689. <em>(Optional)</em>
  4690. <p>Used to select a specific property of the Provider value (if a map), if supported</p>
  4691. </td>
  4692. </tr>
  4693. <tr>
  4694. <td>
  4695. <code>version</code></br>
  4696. <em>
  4697. string
  4698. </em>
  4699. </td>
  4700. <td>
  4701. <em>(Optional)</em>
  4702. <p>Used to select a specific version of the Provider value, if supported</p>
  4703. </td>
  4704. </tr>
  4705. <tr>
  4706. <td>
  4707. <code>conversionStrategy</code></br>
  4708. <em>
  4709. <a href="#external-secrets.io/v1.ExternalSecretConversionStrategy">
  4710. ExternalSecretConversionStrategy
  4711. </a>
  4712. </em>
  4713. </td>
  4714. <td>
  4715. <em>(Optional)</em>
  4716. <p>Used to define a conversion Strategy</p>
  4717. </td>
  4718. </tr>
  4719. <tr>
  4720. <td>
  4721. <code>decodingStrategy</code></br>
  4722. <em>
  4723. <a href="#external-secrets.io/v1.ExternalSecretDecodingStrategy">
  4724. ExternalSecretDecodingStrategy
  4725. </a>
  4726. </em>
  4727. </td>
  4728. <td>
  4729. <em>(Optional)</em>
  4730. <p>Used to define a decoding Strategy</p>
  4731. </td>
  4732. </tr>
  4733. </tbody>
  4734. </table>
  4735. <h3 id="external-secrets.io/v1.ExternalSecretDecodingStrategy">ExternalSecretDecodingStrategy
  4736. (<code>string</code> alias)</p></h3>
  4737. <p>
  4738. (<em>Appears on:</em>
  4739. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>,
  4740. <a href="#external-secrets.io/v1.ExternalSecretFind">ExternalSecretFind</a>)
  4741. </p>
  4742. <p>
  4743. </p>
  4744. <table>
  4745. <thead>
  4746. <tr>
  4747. <th>Value</th>
  4748. <th>Description</th>
  4749. </tr>
  4750. </thead>
  4751. <tbody><tr><td><p>&#34;Auto&#34;</p></td>
  4752. <td></td>
  4753. </tr><tr><td><p>&#34;Base64&#34;</p></td>
  4754. <td></td>
  4755. </tr><tr><td><p>&#34;Base64URL&#34;</p></td>
  4756. <td></td>
  4757. </tr><tr><td><p>&#34;None&#34;</p></td>
  4758. <td></td>
  4759. </tr></tbody>
  4760. </table>
  4761. <h3 id="external-secrets.io/v1.ExternalSecretDeletionPolicy">ExternalSecretDeletionPolicy
  4762. (<code>string</code> alias)</p></h3>
  4763. <p>
  4764. (<em>Appears on:</em>
  4765. <a href="#external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget</a>)
  4766. </p>
  4767. <p>
  4768. <p>ExternalSecretDeletionPolicy defines rules on how to delete the resulting Secret.</p>
  4769. </p>
  4770. <table>
  4771. <thead>
  4772. <tr>
  4773. <th>Value</th>
  4774. <th>Description</th>
  4775. </tr>
  4776. </thead>
  4777. <tbody><tr><td><p>&#34;Delete&#34;</p></td>
  4778. <td><p>Delete deletes the secret if all provider secrets are deleted.
  4779. If a secret gets deleted on the provider side and is not accessible
  4780. anymore this is not considered an error and the ExternalSecret
  4781. does not go into SecretSyncedError status.</p>
  4782. </td>
  4783. </tr><tr><td><p>&#34;Merge&#34;</p></td>
  4784. <td><p>Merge removes keys in the secret, but not the secret itself.
  4785. If a secret gets deleted on the provider side and is not accessible
  4786. anymore this is not considered an error and the ExternalSecret
  4787. does not go into SecretSyncedError status.</p>
  4788. </td>
  4789. </tr><tr><td><p>&#34;Retain&#34;</p></td>
  4790. <td><p>Retain will retain the secret if all provider secrets have been deleted.
  4791. If a provider secret does not exist the ExternalSecret gets into the
  4792. SecretSyncedError status.</p>
  4793. </td>
  4794. </tr></tbody>
  4795. </table>
  4796. <h3 id="external-secrets.io/v1.ExternalSecretFind">ExternalSecretFind
  4797. </h3>
  4798. <p>
  4799. (<em>Appears on:</em>
  4800. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  4801. </p>
  4802. <p>
  4803. </p>
  4804. <table>
  4805. <thead>
  4806. <tr>
  4807. <th>Field</th>
  4808. <th>Description</th>
  4809. </tr>
  4810. </thead>
  4811. <tbody>
  4812. <tr>
  4813. <td>
  4814. <code>path</code></br>
  4815. <em>
  4816. string
  4817. </em>
  4818. </td>
  4819. <td>
  4820. <em>(Optional)</em>
  4821. <p>A root path to start the find operations.</p>
  4822. </td>
  4823. </tr>
  4824. <tr>
  4825. <td>
  4826. <code>name</code></br>
  4827. <em>
  4828. <a href="#external-secrets.io/v1.FindName">
  4829. FindName
  4830. </a>
  4831. </em>
  4832. </td>
  4833. <td>
  4834. <em>(Optional)</em>
  4835. <p>Finds secrets based on the name.</p>
  4836. </td>
  4837. </tr>
  4838. <tr>
  4839. <td>
  4840. <code>tags</code></br>
  4841. <em>
  4842. map[string]string
  4843. </em>
  4844. </td>
  4845. <td>
  4846. <em>(Optional)</em>
  4847. <p>Find secrets based on tags.</p>
  4848. </td>
  4849. </tr>
  4850. <tr>
  4851. <td>
  4852. <code>conversionStrategy</code></br>
  4853. <em>
  4854. <a href="#external-secrets.io/v1.ExternalSecretConversionStrategy">
  4855. ExternalSecretConversionStrategy
  4856. </a>
  4857. </em>
  4858. </td>
  4859. <td>
  4860. <em>(Optional)</em>
  4861. <p>Used to define a conversion Strategy</p>
  4862. </td>
  4863. </tr>
  4864. <tr>
  4865. <td>
  4866. <code>decodingStrategy</code></br>
  4867. <em>
  4868. <a href="#external-secrets.io/v1.ExternalSecretDecodingStrategy">
  4869. ExternalSecretDecodingStrategy
  4870. </a>
  4871. </em>
  4872. </td>
  4873. <td>
  4874. <em>(Optional)</em>
  4875. <p>Used to define a decoding Strategy</p>
  4876. </td>
  4877. </tr>
  4878. </tbody>
  4879. </table>
  4880. <h3 id="external-secrets.io/v1.ExternalSecretMetadata">ExternalSecretMetadata
  4881. </h3>
  4882. <p>
  4883. (<em>Appears on:</em>
  4884. <a href="#external-secrets.io/v1.ClusterExternalSecretSpec">ClusterExternalSecretSpec</a>)
  4885. </p>
  4886. <p>
  4887. <p>ExternalSecretMetadata defines metadata fields for the ExternalSecret generated by the ClusterExternalSecret.</p>
  4888. </p>
  4889. <table>
  4890. <thead>
  4891. <tr>
  4892. <th>Field</th>
  4893. <th>Description</th>
  4894. </tr>
  4895. </thead>
  4896. <tbody>
  4897. <tr>
  4898. <td>
  4899. <code>annotations</code></br>
  4900. <em>
  4901. map[string]string
  4902. </em>
  4903. </td>
  4904. <td>
  4905. <em>(Optional)</em>
  4906. </td>
  4907. </tr>
  4908. <tr>
  4909. <td>
  4910. <code>labels</code></br>
  4911. <em>
  4912. map[string]string
  4913. </em>
  4914. </td>
  4915. <td>
  4916. <em>(Optional)</em>
  4917. </td>
  4918. </tr>
  4919. </tbody>
  4920. </table>
  4921. <h3 id="external-secrets.io/v1.ExternalSecretMetadataPolicy">ExternalSecretMetadataPolicy
  4922. (<code>string</code> alias)</p></h3>
  4923. <p>
  4924. (<em>Appears on:</em>
  4925. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>)
  4926. </p>
  4927. <p>
  4928. </p>
  4929. <table>
  4930. <thead>
  4931. <tr>
  4932. <th>Value</th>
  4933. <th>Description</th>
  4934. </tr>
  4935. </thead>
  4936. <tbody><tr><td><p>&#34;Fetch&#34;</p></td>
  4937. <td></td>
  4938. </tr><tr><td><p>&#34;None&#34;</p></td>
  4939. <td></td>
  4940. </tr></tbody>
  4941. </table>
  4942. <h3 id="external-secrets.io/v1.ExternalSecretRefreshPolicy">ExternalSecretRefreshPolicy
  4943. (<code>string</code> alias)</p></h3>
  4944. <p>
  4945. (<em>Appears on:</em>
  4946. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>)
  4947. </p>
  4948. <p>
  4949. </p>
  4950. <table>
  4951. <thead>
  4952. <tr>
  4953. <th>Value</th>
  4954. <th>Description</th>
  4955. </tr>
  4956. </thead>
  4957. <tbody><tr><td><p>&#34;CreatedOnce&#34;</p></td>
  4958. <td></td>
  4959. </tr><tr><td><p>&#34;OnChange&#34;</p></td>
  4960. <td></td>
  4961. </tr><tr><td><p>&#34;Periodic&#34;</p></td>
  4962. <td></td>
  4963. </tr></tbody>
  4964. </table>
  4965. <h3 id="external-secrets.io/v1.ExternalSecretRewrite">ExternalSecretRewrite
  4966. </h3>
  4967. <p>
  4968. (<em>Appears on:</em>
  4969. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  4970. </p>
  4971. <p>
  4972. </p>
  4973. <table>
  4974. <thead>
  4975. <tr>
  4976. <th>Field</th>
  4977. <th>Description</th>
  4978. </tr>
  4979. </thead>
  4980. <tbody>
  4981. <tr>
  4982. <td>
  4983. <code>regexp</code></br>
  4984. <em>
  4985. <a href="#external-secrets.io/v1.ExternalSecretRewriteRegexp">
  4986. ExternalSecretRewriteRegexp
  4987. </a>
  4988. </em>
  4989. </td>
  4990. <td>
  4991. <em>(Optional)</em>
  4992. <p>Used to rewrite with regular expressions.
  4993. The resulting key will be the output of a regexp.ReplaceAll operation.</p>
  4994. </td>
  4995. </tr>
  4996. <tr>
  4997. <td>
  4998. <code>transform</code></br>
  4999. <em>
  5000. <a href="#external-secrets.io/v1.ExternalSecretRewriteTransform">
  5001. ExternalSecretRewriteTransform
  5002. </a>
  5003. </em>
  5004. </td>
  5005. <td>
  5006. <em>(Optional)</em>
  5007. <p>Used to apply string transformation on the secrets.
  5008. The resulting key will be the output of the template applied by the operation.</p>
  5009. </td>
  5010. </tr>
  5011. </tbody>
  5012. </table>
  5013. <h3 id="external-secrets.io/v1.ExternalSecretRewriteRegexp">ExternalSecretRewriteRegexp
  5014. </h3>
  5015. <p>
  5016. (<em>Appears on:</em>
  5017. <a href="#external-secrets.io/v1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  5018. </p>
  5019. <p>
  5020. </p>
  5021. <table>
  5022. <thead>
  5023. <tr>
  5024. <th>Field</th>
  5025. <th>Description</th>
  5026. </tr>
  5027. </thead>
  5028. <tbody>
  5029. <tr>
  5030. <td>
  5031. <code>source</code></br>
  5032. <em>
  5033. string
  5034. </em>
  5035. </td>
  5036. <td>
  5037. <p>Used to define the regular expression of a re.Compiler.</p>
  5038. </td>
  5039. </tr>
  5040. <tr>
  5041. <td>
  5042. <code>target</code></br>
  5043. <em>
  5044. string
  5045. </em>
  5046. </td>
  5047. <td>
  5048. <p>Used to define the target pattern of a ReplaceAll operation.</p>
  5049. </td>
  5050. </tr>
  5051. </tbody>
  5052. </table>
  5053. <h3 id="external-secrets.io/v1.ExternalSecretRewriteTransform">ExternalSecretRewriteTransform
  5054. </h3>
  5055. <p>
  5056. (<em>Appears on:</em>
  5057. <a href="#external-secrets.io/v1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  5058. </p>
  5059. <p>
  5060. </p>
  5061. <table>
  5062. <thead>
  5063. <tr>
  5064. <th>Field</th>
  5065. <th>Description</th>
  5066. </tr>
  5067. </thead>
  5068. <tbody>
  5069. <tr>
  5070. <td>
  5071. <code>template</code></br>
  5072. <em>
  5073. string
  5074. </em>
  5075. </td>
  5076. <td>
  5077. <p>Used to define the template to apply on the secret name.
  5078. <code>.value</code> will specify the secret name in the template.</p>
  5079. </td>
  5080. </tr>
  5081. </tbody>
  5082. </table>
  5083. <h3 id="external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec
  5084. </h3>
  5085. <p>
  5086. (<em>Appears on:</em>
  5087. <a href="#external-secrets.io/v1.ClusterExternalSecretSpec">ClusterExternalSecretSpec</a>,
  5088. <a href="#external-secrets.io/v1.ExternalSecret">ExternalSecret</a>)
  5089. </p>
  5090. <p>
  5091. <p>ExternalSecretSpec defines the desired state of ExternalSecret.</p>
  5092. </p>
  5093. <table>
  5094. <thead>
  5095. <tr>
  5096. <th>Field</th>
  5097. <th>Description</th>
  5098. </tr>
  5099. </thead>
  5100. <tbody>
  5101. <tr>
  5102. <td>
  5103. <code>secretStoreRef</code></br>
  5104. <em>
  5105. <a href="#external-secrets.io/v1.SecretStoreRef">
  5106. SecretStoreRef
  5107. </a>
  5108. </em>
  5109. </td>
  5110. <td>
  5111. <em>(Optional)</em>
  5112. </td>
  5113. </tr>
  5114. <tr>
  5115. <td>
  5116. <code>target</code></br>
  5117. <em>
  5118. <a href="#external-secrets.io/v1.ExternalSecretTarget">
  5119. ExternalSecretTarget
  5120. </a>
  5121. </em>
  5122. </td>
  5123. <td>
  5124. <em>(Optional)</em>
  5125. </td>
  5126. </tr>
  5127. <tr>
  5128. <td>
  5129. <code>refreshPolicy</code></br>
  5130. <em>
  5131. <a href="#external-secrets.io/v1.ExternalSecretRefreshPolicy">
  5132. ExternalSecretRefreshPolicy
  5133. </a>
  5134. </em>
  5135. </td>
  5136. <td>
  5137. <em>(Optional)</em>
  5138. <p>RefreshPolicy determines how the ExternalSecret should be refreshed:
  5139. - CreatedOnce: Creates the Secret only if it does not exist and does not update it thereafter
  5140. - Periodic: Synchronizes the Secret from the external source at regular intervals specified by refreshInterval.
  5141. No periodic updates occur if refreshInterval is 0.
  5142. - OnChange: Only synchronizes the Secret when the ExternalSecret&rsquo;s metadata or specification changes</p>
  5143. </td>
  5144. </tr>
  5145. <tr>
  5146. <td>
  5147. <code>refreshInterval</code></br>
  5148. <em>
  5149. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  5150. Kubernetes meta/v1.Duration
  5151. </a>
  5152. </em>
  5153. </td>
  5154. <td>
  5155. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider,
  5156. specified as Golang Duration strings.
  5157. Valid time units are &ldquo;ns&rdquo;, &ldquo;us&rdquo; (or &ldquo;µs&rdquo;), &ldquo;ms&rdquo;, &ldquo;s&rdquo;, &ldquo;m&rdquo;, &ldquo;h&rdquo;
  5158. Example values: &ldquo;1h&rdquo;, &ldquo;2h30m&rdquo;, &ldquo;10s&rdquo;
  5159. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  5160. </td>
  5161. </tr>
  5162. <tr>
  5163. <td>
  5164. <code>data</code></br>
  5165. <em>
  5166. <a href="#external-secrets.io/v1.ExternalSecretData">
  5167. []ExternalSecretData
  5168. </a>
  5169. </em>
  5170. </td>
  5171. <td>
  5172. <em>(Optional)</em>
  5173. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  5174. </td>
  5175. </tr>
  5176. <tr>
  5177. <td>
  5178. <code>dataFrom</code></br>
  5179. <em>
  5180. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">
  5181. []ExternalSecretDataFromRemoteRef
  5182. </a>
  5183. </em>
  5184. </td>
  5185. <td>
  5186. <em>(Optional)</em>
  5187. <p>DataFrom is used to fetch all properties from a specific Provider data
  5188. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  5189. </td>
  5190. </tr>
  5191. </tbody>
  5192. </table>
  5193. <h3 id="external-secrets.io/v1.ExternalSecretStatus">ExternalSecretStatus
  5194. </h3>
  5195. <p>
  5196. (<em>Appears on:</em>
  5197. <a href="#external-secrets.io/v1.ExternalSecret">ExternalSecret</a>)
  5198. </p>
  5199. <p>
  5200. </p>
  5201. <table>
  5202. <thead>
  5203. <tr>
  5204. <th>Field</th>
  5205. <th>Description</th>
  5206. </tr>
  5207. </thead>
  5208. <tbody>
  5209. <tr>
  5210. <td>
  5211. <code>refreshTime</code></br>
  5212. <em>
  5213. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  5214. Kubernetes meta/v1.Time
  5215. </a>
  5216. </em>
  5217. </td>
  5218. <td>
  5219. <p>refreshTime is the time and date the external secret was fetched and
  5220. the target secret updated</p>
  5221. </td>
  5222. </tr>
  5223. <tr>
  5224. <td>
  5225. <code>syncedResourceVersion</code></br>
  5226. <em>
  5227. string
  5228. </em>
  5229. </td>
  5230. <td>
  5231. <p>SyncedResourceVersion keeps track of the last synced version</p>
  5232. </td>
  5233. </tr>
  5234. <tr>
  5235. <td>
  5236. <code>conditions</code></br>
  5237. <em>
  5238. <a href="#external-secrets.io/v1.ExternalSecretStatusCondition">
  5239. []ExternalSecretStatusCondition
  5240. </a>
  5241. </em>
  5242. </td>
  5243. <td>
  5244. <em>(Optional)</em>
  5245. </td>
  5246. </tr>
  5247. <tr>
  5248. <td>
  5249. <code>binding</code></br>
  5250. <em>
  5251. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#localobjectreference-v1-core">
  5252. Kubernetes core/v1.LocalObjectReference
  5253. </a>
  5254. </em>
  5255. </td>
  5256. <td>
  5257. <p>Binding represents a servicebinding.io Provisioned Service reference to the secret</p>
  5258. </td>
  5259. </tr>
  5260. </tbody>
  5261. </table>
  5262. <h3 id="external-secrets.io/v1.ExternalSecretStatusCondition">ExternalSecretStatusCondition
  5263. </h3>
  5264. <p>
  5265. (<em>Appears on:</em>
  5266. <a href="#external-secrets.io/v1.ExternalSecretStatus">ExternalSecretStatus</a>)
  5267. </p>
  5268. <p>
  5269. </p>
  5270. <table>
  5271. <thead>
  5272. <tr>
  5273. <th>Field</th>
  5274. <th>Description</th>
  5275. </tr>
  5276. </thead>
  5277. <tbody>
  5278. <tr>
  5279. <td>
  5280. <code>type</code></br>
  5281. <em>
  5282. <a href="#external-secrets.io/v1.ExternalSecretConditionType">
  5283. ExternalSecretConditionType
  5284. </a>
  5285. </em>
  5286. </td>
  5287. <td>
  5288. </td>
  5289. </tr>
  5290. <tr>
  5291. <td>
  5292. <code>status</code></br>
  5293. <em>
  5294. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  5295. Kubernetes core/v1.ConditionStatus
  5296. </a>
  5297. </em>
  5298. </td>
  5299. <td>
  5300. </td>
  5301. </tr>
  5302. <tr>
  5303. <td>
  5304. <code>reason</code></br>
  5305. <em>
  5306. string
  5307. </em>
  5308. </td>
  5309. <td>
  5310. <em>(Optional)</em>
  5311. </td>
  5312. </tr>
  5313. <tr>
  5314. <td>
  5315. <code>message</code></br>
  5316. <em>
  5317. string
  5318. </em>
  5319. </td>
  5320. <td>
  5321. <em>(Optional)</em>
  5322. </td>
  5323. </tr>
  5324. <tr>
  5325. <td>
  5326. <code>lastTransitionTime</code></br>
  5327. <em>
  5328. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  5329. Kubernetes meta/v1.Time
  5330. </a>
  5331. </em>
  5332. </td>
  5333. <td>
  5334. <em>(Optional)</em>
  5335. </td>
  5336. </tr>
  5337. </tbody>
  5338. </table>
  5339. <h3 id="external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget
  5340. </h3>
  5341. <p>
  5342. (<em>Appears on:</em>
  5343. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>)
  5344. </p>
  5345. <p>
  5346. <p>ExternalSecretTarget defines the Kubernetes Secret to be created
  5347. There can be only one target per ExternalSecret.</p>
  5348. </p>
  5349. <table>
  5350. <thead>
  5351. <tr>
  5352. <th>Field</th>
  5353. <th>Description</th>
  5354. </tr>
  5355. </thead>
  5356. <tbody>
  5357. <tr>
  5358. <td>
  5359. <code>name</code></br>
  5360. <em>
  5361. string
  5362. </em>
  5363. </td>
  5364. <td>
  5365. <em>(Optional)</em>
  5366. <p>The name of the Secret resource to be managed.
  5367. Defaults to the .metadata.name of the ExternalSecret resource</p>
  5368. </td>
  5369. </tr>
  5370. <tr>
  5371. <td>
  5372. <code>creationPolicy</code></br>
  5373. <em>
  5374. <a href="#external-secrets.io/v1.ExternalSecretCreationPolicy">
  5375. ExternalSecretCreationPolicy
  5376. </a>
  5377. </em>
  5378. </td>
  5379. <td>
  5380. <em>(Optional)</em>
  5381. <p>CreationPolicy defines rules on how to create the resulting Secret.
  5382. Defaults to &ldquo;Owner&rdquo;</p>
  5383. </td>
  5384. </tr>
  5385. <tr>
  5386. <td>
  5387. <code>deletionPolicy</code></br>
  5388. <em>
  5389. <a href="#external-secrets.io/v1.ExternalSecretDeletionPolicy">
  5390. ExternalSecretDeletionPolicy
  5391. </a>
  5392. </em>
  5393. </td>
  5394. <td>
  5395. <em>(Optional)</em>
  5396. <p>DeletionPolicy defines rules on how to delete the resulting Secret.
  5397. Defaults to &ldquo;Retain&rdquo;</p>
  5398. </td>
  5399. </tr>
  5400. <tr>
  5401. <td>
  5402. <code>template</code></br>
  5403. <em>
  5404. <a href="#external-secrets.io/v1.ExternalSecretTemplate">
  5405. ExternalSecretTemplate
  5406. </a>
  5407. </em>
  5408. </td>
  5409. <td>
  5410. <em>(Optional)</em>
  5411. <p>Template defines a blueprint for the created Secret resource.</p>
  5412. </td>
  5413. </tr>
  5414. <tr>
  5415. <td>
  5416. <code>immutable</code></br>
  5417. <em>
  5418. bool
  5419. </em>
  5420. </td>
  5421. <td>
  5422. <em>(Optional)</em>
  5423. <p>Immutable defines if the final secret will be immutable</p>
  5424. </td>
  5425. </tr>
  5426. </tbody>
  5427. </table>
  5428. <h3 id="external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate
  5429. </h3>
  5430. <p>
  5431. (<em>Appears on:</em>
  5432. <a href="#external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget</a>)
  5433. </p>
  5434. <p>
  5435. <p>ExternalSecretTemplate defines a blueprint for the created Secret resource.
  5436. we can not use native corev1.Secret, it will have empty ObjectMeta values: <a href="https://github.com/kubernetes-sigs/controller-tools/issues/448">https://github.com/kubernetes-sigs/controller-tools/issues/448</a></p>
  5437. </p>
  5438. <table>
  5439. <thead>
  5440. <tr>
  5441. <th>Field</th>
  5442. <th>Description</th>
  5443. </tr>
  5444. </thead>
  5445. <tbody>
  5446. <tr>
  5447. <td>
  5448. <code>type</code></br>
  5449. <em>
  5450. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#secrettype-v1-core">
  5451. Kubernetes core/v1.SecretType
  5452. </a>
  5453. </em>
  5454. </td>
  5455. <td>
  5456. <em>(Optional)</em>
  5457. </td>
  5458. </tr>
  5459. <tr>
  5460. <td>
  5461. <code>engineVersion</code></br>
  5462. <em>
  5463. <a href="#external-secrets.io/v1.TemplateEngineVersion">
  5464. TemplateEngineVersion
  5465. </a>
  5466. </em>
  5467. </td>
  5468. <td>
  5469. <p>EngineVersion specifies the template engine version
  5470. that should be used to compile/execute the
  5471. template specified in .data and .templateFrom[].</p>
  5472. </td>
  5473. </tr>
  5474. <tr>
  5475. <td>
  5476. <code>metadata</code></br>
  5477. <em>
  5478. <a href="#external-secrets.io/v1.ExternalSecretTemplateMetadata">
  5479. ExternalSecretTemplateMetadata
  5480. </a>
  5481. </em>
  5482. </td>
  5483. <td>
  5484. <em>(Optional)</em>
  5485. </td>
  5486. </tr>
  5487. <tr>
  5488. <td>
  5489. <code>mergePolicy</code></br>
  5490. <em>
  5491. <a href="#external-secrets.io/v1.TemplateMergePolicy">
  5492. TemplateMergePolicy
  5493. </a>
  5494. </em>
  5495. </td>
  5496. <td>
  5497. </td>
  5498. </tr>
  5499. <tr>
  5500. <td>
  5501. <code>data</code></br>
  5502. <em>
  5503. map[string]string
  5504. </em>
  5505. </td>
  5506. <td>
  5507. <em>(Optional)</em>
  5508. </td>
  5509. </tr>
  5510. <tr>
  5511. <td>
  5512. <code>templateFrom</code></br>
  5513. <em>
  5514. <a href="#external-secrets.io/v1.TemplateFrom">
  5515. []TemplateFrom
  5516. </a>
  5517. </em>
  5518. </td>
  5519. <td>
  5520. <em>(Optional)</em>
  5521. </td>
  5522. </tr>
  5523. </tbody>
  5524. </table>
  5525. <h3 id="external-secrets.io/v1.ExternalSecretTemplateMetadata">ExternalSecretTemplateMetadata
  5526. </h3>
  5527. <p>
  5528. (<em>Appears on:</em>
  5529. <a href="#external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  5530. </p>
  5531. <p>
  5532. <p>ExternalSecretTemplateMetadata defines metadata fields for the Secret blueprint.</p>
  5533. </p>
  5534. <table>
  5535. <thead>
  5536. <tr>
  5537. <th>Field</th>
  5538. <th>Description</th>
  5539. </tr>
  5540. </thead>
  5541. <tbody>
  5542. <tr>
  5543. <td>
  5544. <code>annotations</code></br>
  5545. <em>
  5546. map[string]string
  5547. </em>
  5548. </td>
  5549. <td>
  5550. <em>(Optional)</em>
  5551. </td>
  5552. </tr>
  5553. <tr>
  5554. <td>
  5555. <code>labels</code></br>
  5556. <em>
  5557. map[string]string
  5558. </em>
  5559. </td>
  5560. <td>
  5561. <em>(Optional)</em>
  5562. </td>
  5563. </tr>
  5564. </tbody>
  5565. </table>
  5566. <h3 id="external-secrets.io/v1.ExternalSecretValidator">ExternalSecretValidator
  5567. </h3>
  5568. <p>
  5569. </p>
  5570. <h3 id="external-secrets.io/v1.FakeProvider">FakeProvider
  5571. </h3>
  5572. <p>
  5573. (<em>Appears on:</em>
  5574. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  5575. </p>
  5576. <p>
  5577. <p>FakeProvider configures a fake provider that returns static values.</p>
  5578. </p>
  5579. <table>
  5580. <thead>
  5581. <tr>
  5582. <th>Field</th>
  5583. <th>Description</th>
  5584. </tr>
  5585. </thead>
  5586. <tbody>
  5587. <tr>
  5588. <td>
  5589. <code>data</code></br>
  5590. <em>
  5591. <a href="#external-secrets.io/v1.FakeProviderData">
  5592. []FakeProviderData
  5593. </a>
  5594. </em>
  5595. </td>
  5596. <td>
  5597. </td>
  5598. </tr>
  5599. </tbody>
  5600. </table>
  5601. <h3 id="external-secrets.io/v1.FakeProviderData">FakeProviderData
  5602. </h3>
  5603. <p>
  5604. (<em>Appears on:</em>
  5605. <a href="#external-secrets.io/v1.FakeProvider">FakeProvider</a>)
  5606. </p>
  5607. <p>
  5608. </p>
  5609. <table>
  5610. <thead>
  5611. <tr>
  5612. <th>Field</th>
  5613. <th>Description</th>
  5614. </tr>
  5615. </thead>
  5616. <tbody>
  5617. <tr>
  5618. <td>
  5619. <code>key</code></br>
  5620. <em>
  5621. string
  5622. </em>
  5623. </td>
  5624. <td>
  5625. </td>
  5626. </tr>
  5627. <tr>
  5628. <td>
  5629. <code>value</code></br>
  5630. <em>
  5631. string
  5632. </em>
  5633. </td>
  5634. <td>
  5635. </td>
  5636. </tr>
  5637. <tr>
  5638. <td>
  5639. <code>version</code></br>
  5640. <em>
  5641. string
  5642. </em>
  5643. </td>
  5644. <td>
  5645. </td>
  5646. </tr>
  5647. </tbody>
  5648. </table>
  5649. <h3 id="external-secrets.io/v1.FindName">FindName
  5650. </h3>
  5651. <p>
  5652. (<em>Appears on:</em>
  5653. <a href="#external-secrets.io/v1.ExternalSecretFind">ExternalSecretFind</a>)
  5654. </p>
  5655. <p>
  5656. </p>
  5657. <table>
  5658. <thead>
  5659. <tr>
  5660. <th>Field</th>
  5661. <th>Description</th>
  5662. </tr>
  5663. </thead>
  5664. <tbody>
  5665. <tr>
  5666. <td>
  5667. <code>regexp</code></br>
  5668. <em>
  5669. string
  5670. </em>
  5671. </td>
  5672. <td>
  5673. <em>(Optional)</em>
  5674. <p>Finds secrets base</p>
  5675. </td>
  5676. </tr>
  5677. </tbody>
  5678. </table>
  5679. <h3 id="external-secrets.io/v1.FortanixProvider">FortanixProvider
  5680. </h3>
  5681. <p>
  5682. (<em>Appears on:</em>
  5683. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  5684. </p>
  5685. <p>
  5686. </p>
  5687. <table>
  5688. <thead>
  5689. <tr>
  5690. <th>Field</th>
  5691. <th>Description</th>
  5692. </tr>
  5693. </thead>
  5694. <tbody>
  5695. <tr>
  5696. <td>
  5697. <code>apiUrl</code></br>
  5698. <em>
  5699. string
  5700. </em>
  5701. </td>
  5702. <td>
  5703. <p>APIURL is the URL of SDKMS API. Defaults to <code>sdkms.fortanix.com</code>.</p>
  5704. </td>
  5705. </tr>
  5706. <tr>
  5707. <td>
  5708. <code>apiKey</code></br>
  5709. <em>
  5710. <a href="#external-secrets.io/v1.FortanixProviderSecretRef">
  5711. FortanixProviderSecretRef
  5712. </a>
  5713. </em>
  5714. </td>
  5715. <td>
  5716. <p>APIKey is the API token to access SDKMS Applications.</p>
  5717. </td>
  5718. </tr>
  5719. </tbody>
  5720. </table>
  5721. <h3 id="external-secrets.io/v1.FortanixProviderSecretRef">FortanixProviderSecretRef
  5722. </h3>
  5723. <p>
  5724. (<em>Appears on:</em>
  5725. <a href="#external-secrets.io/v1.FortanixProvider">FortanixProvider</a>)
  5726. </p>
  5727. <p>
  5728. </p>
  5729. <table>
  5730. <thead>
  5731. <tr>
  5732. <th>Field</th>
  5733. <th>Description</th>
  5734. </tr>
  5735. </thead>
  5736. <tbody>
  5737. <tr>
  5738. <td>
  5739. <code>secretRef</code></br>
  5740. <em>
  5741. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5742. External Secrets meta/v1.SecretKeySelector
  5743. </a>
  5744. </em>
  5745. </td>
  5746. <td>
  5747. <p>SecretRef is a reference to a secret containing the SDKMS API Key.</p>
  5748. </td>
  5749. </tr>
  5750. </tbody>
  5751. </table>
  5752. <h3 id="external-secrets.io/v1.GCPSMAuth">GCPSMAuth
  5753. </h3>
  5754. <p>
  5755. (<em>Appears on:</em>
  5756. <a href="#external-secrets.io/v1.GCPSMProvider">GCPSMProvider</a>)
  5757. </p>
  5758. <p>
  5759. </p>
  5760. <table>
  5761. <thead>
  5762. <tr>
  5763. <th>Field</th>
  5764. <th>Description</th>
  5765. </tr>
  5766. </thead>
  5767. <tbody>
  5768. <tr>
  5769. <td>
  5770. <code>secretRef</code></br>
  5771. <em>
  5772. <a href="#external-secrets.io/v1.GCPSMAuthSecretRef">
  5773. GCPSMAuthSecretRef
  5774. </a>
  5775. </em>
  5776. </td>
  5777. <td>
  5778. <em>(Optional)</em>
  5779. </td>
  5780. </tr>
  5781. <tr>
  5782. <td>
  5783. <code>workloadIdentity</code></br>
  5784. <em>
  5785. <a href="#external-secrets.io/v1.GCPWorkloadIdentity">
  5786. GCPWorkloadIdentity
  5787. </a>
  5788. </em>
  5789. </td>
  5790. <td>
  5791. <em>(Optional)</em>
  5792. </td>
  5793. </tr>
  5794. </tbody>
  5795. </table>
  5796. <h3 id="external-secrets.io/v1.GCPSMAuthSecretRef">GCPSMAuthSecretRef
  5797. </h3>
  5798. <p>
  5799. (<em>Appears on:</em>
  5800. <a href="#external-secrets.io/v1.GCPSMAuth">GCPSMAuth</a>)
  5801. </p>
  5802. <p>
  5803. </p>
  5804. <table>
  5805. <thead>
  5806. <tr>
  5807. <th>Field</th>
  5808. <th>Description</th>
  5809. </tr>
  5810. </thead>
  5811. <tbody>
  5812. <tr>
  5813. <td>
  5814. <code>secretAccessKeySecretRef</code></br>
  5815. <em>
  5816. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5817. External Secrets meta/v1.SecretKeySelector
  5818. </a>
  5819. </em>
  5820. </td>
  5821. <td>
  5822. <em>(Optional)</em>
  5823. <p>The SecretAccessKey is used for authentication</p>
  5824. </td>
  5825. </tr>
  5826. </tbody>
  5827. </table>
  5828. <h3 id="external-secrets.io/v1.GCPSMProvider">GCPSMProvider
  5829. </h3>
  5830. <p>
  5831. (<em>Appears on:</em>
  5832. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  5833. </p>
  5834. <p>
  5835. <p>GCPSMProvider Configures a store to sync secrets using the GCP Secret Manager provider.</p>
  5836. </p>
  5837. <table>
  5838. <thead>
  5839. <tr>
  5840. <th>Field</th>
  5841. <th>Description</th>
  5842. </tr>
  5843. </thead>
  5844. <tbody>
  5845. <tr>
  5846. <td>
  5847. <code>auth</code></br>
  5848. <em>
  5849. <a href="#external-secrets.io/v1.GCPSMAuth">
  5850. GCPSMAuth
  5851. </a>
  5852. </em>
  5853. </td>
  5854. <td>
  5855. <em>(Optional)</em>
  5856. <p>Auth defines the information necessary to authenticate against GCP</p>
  5857. </td>
  5858. </tr>
  5859. <tr>
  5860. <td>
  5861. <code>projectID</code></br>
  5862. <em>
  5863. string
  5864. </em>
  5865. </td>
  5866. <td>
  5867. <p>ProjectID project where secret is located</p>
  5868. </td>
  5869. </tr>
  5870. <tr>
  5871. <td>
  5872. <code>location</code></br>
  5873. <em>
  5874. string
  5875. </em>
  5876. </td>
  5877. <td>
  5878. <p>Location optionally defines a location for a secret</p>
  5879. </td>
  5880. </tr>
  5881. </tbody>
  5882. </table>
  5883. <h3 id="external-secrets.io/v1.GCPWorkloadIdentity">GCPWorkloadIdentity
  5884. </h3>
  5885. <p>
  5886. (<em>Appears on:</em>
  5887. <a href="#external-secrets.io/v1.GCPSMAuth">GCPSMAuth</a>)
  5888. </p>
  5889. <p>
  5890. </p>
  5891. <table>
  5892. <thead>
  5893. <tr>
  5894. <th>Field</th>
  5895. <th>Description</th>
  5896. </tr>
  5897. </thead>
  5898. <tbody>
  5899. <tr>
  5900. <td>
  5901. <code>serviceAccountRef</code></br>
  5902. <em>
  5903. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  5904. External Secrets meta/v1.ServiceAccountSelector
  5905. </a>
  5906. </em>
  5907. </td>
  5908. <td>
  5909. </td>
  5910. </tr>
  5911. <tr>
  5912. <td>
  5913. <code>clusterLocation</code></br>
  5914. <em>
  5915. string
  5916. </em>
  5917. </td>
  5918. <td>
  5919. <em>(Optional)</em>
  5920. <p>ClusterLocation is the location of the cluster
  5921. If not specified, it fetches information from the metadata server</p>
  5922. </td>
  5923. </tr>
  5924. <tr>
  5925. <td>
  5926. <code>clusterName</code></br>
  5927. <em>
  5928. string
  5929. </em>
  5930. </td>
  5931. <td>
  5932. <em>(Optional)</em>
  5933. <p>ClusterName is the name of the cluster
  5934. If not specified, it fetches information from the metadata server</p>
  5935. </td>
  5936. </tr>
  5937. <tr>
  5938. <td>
  5939. <code>clusterProjectID</code></br>
  5940. <em>
  5941. string
  5942. </em>
  5943. </td>
  5944. <td>
  5945. <em>(Optional)</em>
  5946. <p>ClusterProjectID is the project ID of the cluster
  5947. If not specified, it fetches information from the metadata server</p>
  5948. </td>
  5949. </tr>
  5950. </tbody>
  5951. </table>
  5952. <h3 id="external-secrets.io/v1.GeneratorRef">GeneratorRef
  5953. </h3>
  5954. <p>
  5955. (<em>Appears on:</em>
  5956. <a href="#external-secrets.io/v1.StoreGeneratorSourceRef">StoreGeneratorSourceRef</a>,
  5957. <a href="#external-secrets.io/v1.StoreSourceRef">StoreSourceRef</a>)
  5958. </p>
  5959. <p>
  5960. <p>GeneratorRef points to a generator custom resource.</p>
  5961. </p>
  5962. <table>
  5963. <thead>
  5964. <tr>
  5965. <th>Field</th>
  5966. <th>Description</th>
  5967. </tr>
  5968. </thead>
  5969. <tbody>
  5970. <tr>
  5971. <td>
  5972. <code>apiVersion</code></br>
  5973. <em>
  5974. string
  5975. </em>
  5976. </td>
  5977. <td>
  5978. <p>Specify the apiVersion of the generator resource</p>
  5979. </td>
  5980. </tr>
  5981. <tr>
  5982. <td>
  5983. <code>kind</code></br>
  5984. <em>
  5985. string
  5986. </em>
  5987. </td>
  5988. <td>
  5989. <p>Specify the Kind of the generator resource</p>
  5990. </td>
  5991. </tr>
  5992. <tr>
  5993. <td>
  5994. <code>name</code></br>
  5995. <em>
  5996. string
  5997. </em>
  5998. </td>
  5999. <td>
  6000. <p>Specify the name of the generator resource</p>
  6001. </td>
  6002. </tr>
  6003. </tbody>
  6004. </table>
  6005. <h3 id="external-secrets.io/v1.GenericStore">GenericStore
  6006. </h3>
  6007. <p>
  6008. <p>GenericStore is a common interface for interacting with ClusterSecretStore
  6009. or a namespaced SecretStore.</p>
  6010. </p>
  6011. <h3 id="external-secrets.io/v1.GenericStoreValidator">GenericStoreValidator
  6012. </h3>
  6013. <p>
  6014. </p>
  6015. <h3 id="external-secrets.io/v1.GithubAppAuth">GithubAppAuth
  6016. </h3>
  6017. <p>
  6018. (<em>Appears on:</em>
  6019. <a href="#external-secrets.io/v1.GithubProvider">GithubProvider</a>)
  6020. </p>
  6021. <p>
  6022. </p>
  6023. <table>
  6024. <thead>
  6025. <tr>
  6026. <th>Field</th>
  6027. <th>Description</th>
  6028. </tr>
  6029. </thead>
  6030. <tbody>
  6031. <tr>
  6032. <td>
  6033. <code>privateKey</code></br>
  6034. <em>
  6035. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6036. External Secrets meta/v1.SecretKeySelector
  6037. </a>
  6038. </em>
  6039. </td>
  6040. <td>
  6041. </td>
  6042. </tr>
  6043. </tbody>
  6044. </table>
  6045. <h3 id="external-secrets.io/v1.GithubProvider">GithubProvider
  6046. </h3>
  6047. <p>
  6048. (<em>Appears on:</em>
  6049. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6050. </p>
  6051. <p>
  6052. <p>Configures a store to push secrets to Github Actions.</p>
  6053. </p>
  6054. <table>
  6055. <thead>
  6056. <tr>
  6057. <th>Field</th>
  6058. <th>Description</th>
  6059. </tr>
  6060. </thead>
  6061. <tbody>
  6062. <tr>
  6063. <td>
  6064. <code>url</code></br>
  6065. <em>
  6066. string
  6067. </em>
  6068. </td>
  6069. <td>
  6070. <p>URL configures the Github instance URL. Defaults to <a href="https://github.com/">https://github.com/</a>.</p>
  6071. </td>
  6072. </tr>
  6073. <tr>
  6074. <td>
  6075. <code>uploadURL</code></br>
  6076. <em>
  6077. string
  6078. </em>
  6079. </td>
  6080. <td>
  6081. <em>(Optional)</em>
  6082. <p>Upload URL for enterprise instances. Default to URL.</p>
  6083. </td>
  6084. </tr>
  6085. <tr>
  6086. <td>
  6087. <code>auth</code></br>
  6088. <em>
  6089. <a href="#external-secrets.io/v1.GithubAppAuth">
  6090. GithubAppAuth
  6091. </a>
  6092. </em>
  6093. </td>
  6094. <td>
  6095. <p>auth configures how secret-manager authenticates with a Github instance.</p>
  6096. </td>
  6097. </tr>
  6098. <tr>
  6099. <td>
  6100. <code>appID</code></br>
  6101. <em>
  6102. int64
  6103. </em>
  6104. </td>
  6105. <td>
  6106. <p>appID specifies the Github APP that will be used to authenticate the client</p>
  6107. </td>
  6108. </tr>
  6109. <tr>
  6110. <td>
  6111. <code>installationID</code></br>
  6112. <em>
  6113. int64
  6114. </em>
  6115. </td>
  6116. <td>
  6117. <p>installationID specifies the Github APP installation that will be used to authenticate the client</p>
  6118. </td>
  6119. </tr>
  6120. <tr>
  6121. <td>
  6122. <code>organization</code></br>
  6123. <em>
  6124. string
  6125. </em>
  6126. </td>
  6127. <td>
  6128. <p>organization will be used to fetch secrets from the Github organization</p>
  6129. </td>
  6130. </tr>
  6131. <tr>
  6132. <td>
  6133. <code>repository</code></br>
  6134. <em>
  6135. string
  6136. </em>
  6137. </td>
  6138. <td>
  6139. <em>(Optional)</em>
  6140. <p>repository will be used to fetch secrets from the Github repository within an organization</p>
  6141. </td>
  6142. </tr>
  6143. <tr>
  6144. <td>
  6145. <code>environment</code></br>
  6146. <em>
  6147. string
  6148. </em>
  6149. </td>
  6150. <td>
  6151. <em>(Optional)</em>
  6152. <p>environment will be used to fetch secrets from a particular environment within a github repository</p>
  6153. </td>
  6154. </tr>
  6155. </tbody>
  6156. </table>
  6157. <h3 id="external-secrets.io/v1.GitlabAuth">GitlabAuth
  6158. </h3>
  6159. <p>
  6160. (<em>Appears on:</em>
  6161. <a href="#external-secrets.io/v1.GitlabProvider">GitlabProvider</a>)
  6162. </p>
  6163. <p>
  6164. </p>
  6165. <table>
  6166. <thead>
  6167. <tr>
  6168. <th>Field</th>
  6169. <th>Description</th>
  6170. </tr>
  6171. </thead>
  6172. <tbody>
  6173. <tr>
  6174. <td>
  6175. <code>SecretRef</code></br>
  6176. <em>
  6177. <a href="#external-secrets.io/v1.GitlabSecretRef">
  6178. GitlabSecretRef
  6179. </a>
  6180. </em>
  6181. </td>
  6182. <td>
  6183. </td>
  6184. </tr>
  6185. </tbody>
  6186. </table>
  6187. <h3 id="external-secrets.io/v1.GitlabProvider">GitlabProvider
  6188. </h3>
  6189. <p>
  6190. (<em>Appears on:</em>
  6191. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6192. </p>
  6193. <p>
  6194. <p>Configures a store to sync secrets with a GitLab instance.</p>
  6195. </p>
  6196. <table>
  6197. <thead>
  6198. <tr>
  6199. <th>Field</th>
  6200. <th>Description</th>
  6201. </tr>
  6202. </thead>
  6203. <tbody>
  6204. <tr>
  6205. <td>
  6206. <code>url</code></br>
  6207. <em>
  6208. string
  6209. </em>
  6210. </td>
  6211. <td>
  6212. <p>URL configures the GitLab instance URL. Defaults to <a href="https://gitlab.com/">https://gitlab.com/</a>.</p>
  6213. </td>
  6214. </tr>
  6215. <tr>
  6216. <td>
  6217. <code>auth</code></br>
  6218. <em>
  6219. <a href="#external-secrets.io/v1.GitlabAuth">
  6220. GitlabAuth
  6221. </a>
  6222. </em>
  6223. </td>
  6224. <td>
  6225. <p>Auth configures how secret-manager authenticates with a GitLab instance.</p>
  6226. </td>
  6227. </tr>
  6228. <tr>
  6229. <td>
  6230. <code>projectID</code></br>
  6231. <em>
  6232. string
  6233. </em>
  6234. </td>
  6235. <td>
  6236. <p>ProjectID specifies a project where secrets are located.</p>
  6237. </td>
  6238. </tr>
  6239. <tr>
  6240. <td>
  6241. <code>inheritFromGroups</code></br>
  6242. <em>
  6243. bool
  6244. </em>
  6245. </td>
  6246. <td>
  6247. <p>InheritFromGroups specifies whether parent groups should be discovered and checked for secrets.</p>
  6248. </td>
  6249. </tr>
  6250. <tr>
  6251. <td>
  6252. <code>groupIDs</code></br>
  6253. <em>
  6254. []string
  6255. </em>
  6256. </td>
  6257. <td>
  6258. <p>GroupIDs specify, which gitlab groups to pull secrets from. Group secrets are read from left to right followed by the project variables.</p>
  6259. </td>
  6260. </tr>
  6261. <tr>
  6262. <td>
  6263. <code>environment</code></br>
  6264. <em>
  6265. string
  6266. </em>
  6267. </td>
  6268. <td>
  6269. <p>Environment environment_scope of gitlab CI/CD variables (Please see <a href="https://docs.gitlab.com/ee/ci/environments/#create-a-static-environment">https://docs.gitlab.com/ee/ci/environments/#create-a-static-environment</a> on how to create environments)</p>
  6270. </td>
  6271. </tr>
  6272. </tbody>
  6273. </table>
  6274. <h3 id="external-secrets.io/v1.GitlabSecretRef">GitlabSecretRef
  6275. </h3>
  6276. <p>
  6277. (<em>Appears on:</em>
  6278. <a href="#external-secrets.io/v1.GitlabAuth">GitlabAuth</a>)
  6279. </p>
  6280. <p>
  6281. </p>
  6282. <table>
  6283. <thead>
  6284. <tr>
  6285. <th>Field</th>
  6286. <th>Description</th>
  6287. </tr>
  6288. </thead>
  6289. <tbody>
  6290. <tr>
  6291. <td>
  6292. <code>accessToken</code></br>
  6293. <em>
  6294. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6295. External Secrets meta/v1.SecretKeySelector
  6296. </a>
  6297. </em>
  6298. </td>
  6299. <td>
  6300. <p>AccessToken is used for authentication.</p>
  6301. </td>
  6302. </tr>
  6303. </tbody>
  6304. </table>
  6305. <h3 id="external-secrets.io/v1.IBMAuth">IBMAuth
  6306. </h3>
  6307. <p>
  6308. (<em>Appears on:</em>
  6309. <a href="#external-secrets.io/v1.IBMProvider">IBMProvider</a>)
  6310. </p>
  6311. <p>
  6312. </p>
  6313. <table>
  6314. <thead>
  6315. <tr>
  6316. <th>Field</th>
  6317. <th>Description</th>
  6318. </tr>
  6319. </thead>
  6320. <tbody>
  6321. <tr>
  6322. <td>
  6323. <code>secretRef</code></br>
  6324. <em>
  6325. <a href="#external-secrets.io/v1.IBMAuthSecretRef">
  6326. IBMAuthSecretRef
  6327. </a>
  6328. </em>
  6329. </td>
  6330. <td>
  6331. </td>
  6332. </tr>
  6333. <tr>
  6334. <td>
  6335. <code>containerAuth</code></br>
  6336. <em>
  6337. <a href="#external-secrets.io/v1.IBMAuthContainerAuth">
  6338. IBMAuthContainerAuth
  6339. </a>
  6340. </em>
  6341. </td>
  6342. <td>
  6343. </td>
  6344. </tr>
  6345. </tbody>
  6346. </table>
  6347. <h3 id="external-secrets.io/v1.IBMAuthContainerAuth">IBMAuthContainerAuth
  6348. </h3>
  6349. <p>
  6350. (<em>Appears on:</em>
  6351. <a href="#external-secrets.io/v1.IBMAuth">IBMAuth</a>)
  6352. </p>
  6353. <p>
  6354. <p>IBM Container-based auth with IAM Trusted Profile.</p>
  6355. </p>
  6356. <table>
  6357. <thead>
  6358. <tr>
  6359. <th>Field</th>
  6360. <th>Description</th>
  6361. </tr>
  6362. </thead>
  6363. <tbody>
  6364. <tr>
  6365. <td>
  6366. <code>profile</code></br>
  6367. <em>
  6368. string
  6369. </em>
  6370. </td>
  6371. <td>
  6372. <p>the IBM Trusted Profile</p>
  6373. </td>
  6374. </tr>
  6375. <tr>
  6376. <td>
  6377. <code>tokenLocation</code></br>
  6378. <em>
  6379. string
  6380. </em>
  6381. </td>
  6382. <td>
  6383. <p>Location the token is mounted on the pod</p>
  6384. </td>
  6385. </tr>
  6386. <tr>
  6387. <td>
  6388. <code>iamEndpoint</code></br>
  6389. <em>
  6390. string
  6391. </em>
  6392. </td>
  6393. <td>
  6394. </td>
  6395. </tr>
  6396. </tbody>
  6397. </table>
  6398. <h3 id="external-secrets.io/v1.IBMAuthSecretRef">IBMAuthSecretRef
  6399. </h3>
  6400. <p>
  6401. (<em>Appears on:</em>
  6402. <a href="#external-secrets.io/v1.IBMAuth">IBMAuth</a>)
  6403. </p>
  6404. <p>
  6405. </p>
  6406. <table>
  6407. <thead>
  6408. <tr>
  6409. <th>Field</th>
  6410. <th>Description</th>
  6411. </tr>
  6412. </thead>
  6413. <tbody>
  6414. <tr>
  6415. <td>
  6416. <code>secretApiKeySecretRef</code></br>
  6417. <em>
  6418. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6419. External Secrets meta/v1.SecretKeySelector
  6420. </a>
  6421. </em>
  6422. </td>
  6423. <td>
  6424. <p>The SecretAccessKey is used for authentication</p>
  6425. </td>
  6426. </tr>
  6427. </tbody>
  6428. </table>
  6429. <h3 id="external-secrets.io/v1.IBMProvider">IBMProvider
  6430. </h3>
  6431. <p>
  6432. (<em>Appears on:</em>
  6433. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6434. </p>
  6435. <p>
  6436. <p>Configures an store to sync secrets using a IBM Cloud Secrets Manager
  6437. backend.</p>
  6438. </p>
  6439. <table>
  6440. <thead>
  6441. <tr>
  6442. <th>Field</th>
  6443. <th>Description</th>
  6444. </tr>
  6445. </thead>
  6446. <tbody>
  6447. <tr>
  6448. <td>
  6449. <code>auth</code></br>
  6450. <em>
  6451. <a href="#external-secrets.io/v1.IBMAuth">
  6452. IBMAuth
  6453. </a>
  6454. </em>
  6455. </td>
  6456. <td>
  6457. <p>Auth configures how secret-manager authenticates with the IBM secrets manager.</p>
  6458. </td>
  6459. </tr>
  6460. <tr>
  6461. <td>
  6462. <code>serviceUrl</code></br>
  6463. <em>
  6464. string
  6465. </em>
  6466. </td>
  6467. <td>
  6468. <p>ServiceURL is the Endpoint URL that is specific to the Secrets Manager service instance</p>
  6469. </td>
  6470. </tr>
  6471. </tbody>
  6472. </table>
  6473. <h3 id="external-secrets.io/v1.InfisicalAuth">InfisicalAuth
  6474. </h3>
  6475. <p>
  6476. (<em>Appears on:</em>
  6477. <a href="#external-secrets.io/v1.InfisicalProvider">InfisicalProvider</a>)
  6478. </p>
  6479. <p>
  6480. </p>
  6481. <table>
  6482. <thead>
  6483. <tr>
  6484. <th>Field</th>
  6485. <th>Description</th>
  6486. </tr>
  6487. </thead>
  6488. <tbody>
  6489. <tr>
  6490. <td>
  6491. <code>universalAuthCredentials</code></br>
  6492. <em>
  6493. <a href="#external-secrets.io/v1.UniversalAuthCredentials">
  6494. UniversalAuthCredentials
  6495. </a>
  6496. </em>
  6497. </td>
  6498. <td>
  6499. <em>(Optional)</em>
  6500. </td>
  6501. </tr>
  6502. </tbody>
  6503. </table>
  6504. <h3 id="external-secrets.io/v1.InfisicalProvider">InfisicalProvider
  6505. </h3>
  6506. <p>
  6507. (<em>Appears on:</em>
  6508. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6509. </p>
  6510. <p>
  6511. <p>InfisicalProvider configures a store to sync secrets using the Infisical provider.</p>
  6512. </p>
  6513. <table>
  6514. <thead>
  6515. <tr>
  6516. <th>Field</th>
  6517. <th>Description</th>
  6518. </tr>
  6519. </thead>
  6520. <tbody>
  6521. <tr>
  6522. <td>
  6523. <code>auth</code></br>
  6524. <em>
  6525. <a href="#external-secrets.io/v1.InfisicalAuth">
  6526. InfisicalAuth
  6527. </a>
  6528. </em>
  6529. </td>
  6530. <td>
  6531. <p>Auth configures how the Operator authenticates with the Infisical API</p>
  6532. </td>
  6533. </tr>
  6534. <tr>
  6535. <td>
  6536. <code>secretsScope</code></br>
  6537. <em>
  6538. <a href="#external-secrets.io/v1.MachineIdentityScopeInWorkspace">
  6539. MachineIdentityScopeInWorkspace
  6540. </a>
  6541. </em>
  6542. </td>
  6543. <td>
  6544. <p>SecretsScope defines the scope of the secrets within the workspace</p>
  6545. </td>
  6546. </tr>
  6547. <tr>
  6548. <td>
  6549. <code>hostAPI</code></br>
  6550. <em>
  6551. string
  6552. </em>
  6553. </td>
  6554. <td>
  6555. <em>(Optional)</em>
  6556. <p>HostAPI specifies the base URL of the Infisical API. If not provided, it defaults to &ldquo;<a href="https://app.infisical.com/api&quot;">https://app.infisical.com/api&rdquo;</a>.</p>
  6557. </td>
  6558. </tr>
  6559. </tbody>
  6560. </table>
  6561. <h3 id="external-secrets.io/v1.IntegrationInfo">IntegrationInfo
  6562. </h3>
  6563. <p>
  6564. (<em>Appears on:</em>
  6565. <a href="#external-secrets.io/v1.OnePasswordSDKProvider">OnePasswordSDKProvider</a>)
  6566. </p>
  6567. <p>
  6568. <p>IntegrationInfo specifies the name and version of the integration built using the 1Password Go SDK.</p>
  6569. </p>
  6570. <table>
  6571. <thead>
  6572. <tr>
  6573. <th>Field</th>
  6574. <th>Description</th>
  6575. </tr>
  6576. </thead>
  6577. <tbody>
  6578. <tr>
  6579. <td>
  6580. <code>name</code></br>
  6581. <em>
  6582. string
  6583. </em>
  6584. </td>
  6585. <td>
  6586. <p>Name defaults to &ldquo;1Password SDK&rdquo;.</p>
  6587. </td>
  6588. </tr>
  6589. <tr>
  6590. <td>
  6591. <code>version</code></br>
  6592. <em>
  6593. string
  6594. </em>
  6595. </td>
  6596. <td>
  6597. <p>Version defaults to &ldquo;v1.0.0&rdquo;.</p>
  6598. </td>
  6599. </tr>
  6600. </tbody>
  6601. </table>
  6602. <h3 id="external-secrets.io/v1.KeeperSecurityProvider">KeeperSecurityProvider
  6603. </h3>
  6604. <p>
  6605. (<em>Appears on:</em>
  6606. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6607. </p>
  6608. <p>
  6609. <p>KeeperSecurityProvider Configures a store to sync secrets using Keeper Security.</p>
  6610. </p>
  6611. <table>
  6612. <thead>
  6613. <tr>
  6614. <th>Field</th>
  6615. <th>Description</th>
  6616. </tr>
  6617. </thead>
  6618. <tbody>
  6619. <tr>
  6620. <td>
  6621. <code>authRef</code></br>
  6622. <em>
  6623. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6624. External Secrets meta/v1.SecretKeySelector
  6625. </a>
  6626. </em>
  6627. </td>
  6628. <td>
  6629. </td>
  6630. </tr>
  6631. <tr>
  6632. <td>
  6633. <code>folderID</code></br>
  6634. <em>
  6635. string
  6636. </em>
  6637. </td>
  6638. <td>
  6639. </td>
  6640. </tr>
  6641. </tbody>
  6642. </table>
  6643. <h3 id="external-secrets.io/v1.KubernetesAuth">KubernetesAuth
  6644. </h3>
  6645. <p>
  6646. (<em>Appears on:</em>
  6647. <a href="#external-secrets.io/v1.KubernetesProvider">KubernetesProvider</a>)
  6648. </p>
  6649. <p>
  6650. </p>
  6651. <table>
  6652. <thead>
  6653. <tr>
  6654. <th>Field</th>
  6655. <th>Description</th>
  6656. </tr>
  6657. </thead>
  6658. <tbody>
  6659. <tr>
  6660. <td>
  6661. <code>cert</code></br>
  6662. <em>
  6663. <a href="#external-secrets.io/v1.CertAuth">
  6664. CertAuth
  6665. </a>
  6666. </em>
  6667. </td>
  6668. <td>
  6669. <em>(Optional)</em>
  6670. <p>has both clientCert and clientKey as secretKeySelector</p>
  6671. </td>
  6672. </tr>
  6673. <tr>
  6674. <td>
  6675. <code>token</code></br>
  6676. <em>
  6677. <a href="#external-secrets.io/v1.TokenAuth">
  6678. TokenAuth
  6679. </a>
  6680. </em>
  6681. </td>
  6682. <td>
  6683. <em>(Optional)</em>
  6684. <p>use static token to authenticate with</p>
  6685. </td>
  6686. </tr>
  6687. <tr>
  6688. <td>
  6689. <code>serviceAccount</code></br>
  6690. <em>
  6691. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  6692. External Secrets meta/v1.ServiceAccountSelector
  6693. </a>
  6694. </em>
  6695. </td>
  6696. <td>
  6697. <em>(Optional)</em>
  6698. <p>points to a service account that should be used for authentication</p>
  6699. </td>
  6700. </tr>
  6701. </tbody>
  6702. </table>
  6703. <h3 id="external-secrets.io/v1.KubernetesProvider">KubernetesProvider
  6704. </h3>
  6705. <p>
  6706. (<em>Appears on:</em>
  6707. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6708. </p>
  6709. <p>
  6710. <p>Configures a store to sync secrets with a Kubernetes instance.</p>
  6711. </p>
  6712. <table>
  6713. <thead>
  6714. <tr>
  6715. <th>Field</th>
  6716. <th>Description</th>
  6717. </tr>
  6718. </thead>
  6719. <tbody>
  6720. <tr>
  6721. <td>
  6722. <code>server</code></br>
  6723. <em>
  6724. <a href="#external-secrets.io/v1.KubernetesServer">
  6725. KubernetesServer
  6726. </a>
  6727. </em>
  6728. </td>
  6729. <td>
  6730. <em>(Optional)</em>
  6731. <p>configures the Kubernetes server Address.</p>
  6732. </td>
  6733. </tr>
  6734. <tr>
  6735. <td>
  6736. <code>auth</code></br>
  6737. <em>
  6738. <a href="#external-secrets.io/v1.KubernetesAuth">
  6739. KubernetesAuth
  6740. </a>
  6741. </em>
  6742. </td>
  6743. <td>
  6744. <em>(Optional)</em>
  6745. <p>Auth configures how secret-manager authenticates with a Kubernetes instance.</p>
  6746. </td>
  6747. </tr>
  6748. <tr>
  6749. <td>
  6750. <code>authRef</code></br>
  6751. <em>
  6752. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6753. External Secrets meta/v1.SecretKeySelector
  6754. </a>
  6755. </em>
  6756. </td>
  6757. <td>
  6758. <em>(Optional)</em>
  6759. <p>A reference to a secret that contains the auth information.</p>
  6760. </td>
  6761. </tr>
  6762. <tr>
  6763. <td>
  6764. <code>remoteNamespace</code></br>
  6765. <em>
  6766. string
  6767. </em>
  6768. </td>
  6769. <td>
  6770. <em>(Optional)</em>
  6771. <p>Remote namespace to fetch the secrets from</p>
  6772. </td>
  6773. </tr>
  6774. </tbody>
  6775. </table>
  6776. <h3 id="external-secrets.io/v1.KubernetesServer">KubernetesServer
  6777. </h3>
  6778. <p>
  6779. (<em>Appears on:</em>
  6780. <a href="#external-secrets.io/v1.KubernetesProvider">KubernetesProvider</a>)
  6781. </p>
  6782. <p>
  6783. </p>
  6784. <table>
  6785. <thead>
  6786. <tr>
  6787. <th>Field</th>
  6788. <th>Description</th>
  6789. </tr>
  6790. </thead>
  6791. <tbody>
  6792. <tr>
  6793. <td>
  6794. <code>url</code></br>
  6795. <em>
  6796. string
  6797. </em>
  6798. </td>
  6799. <td>
  6800. <em>(Optional)</em>
  6801. <p>configures the Kubernetes server Address.</p>
  6802. </td>
  6803. </tr>
  6804. <tr>
  6805. <td>
  6806. <code>caBundle</code></br>
  6807. <em>
  6808. []byte
  6809. </em>
  6810. </td>
  6811. <td>
  6812. <em>(Optional)</em>
  6813. <p>CABundle is a base64-encoded CA certificate</p>
  6814. </td>
  6815. </tr>
  6816. <tr>
  6817. <td>
  6818. <code>caProvider</code></br>
  6819. <em>
  6820. <a href="#external-secrets.io/v1.CAProvider">
  6821. CAProvider
  6822. </a>
  6823. </em>
  6824. </td>
  6825. <td>
  6826. <em>(Optional)</em>
  6827. <p>see: <a href="https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider">https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider</a></p>
  6828. </td>
  6829. </tr>
  6830. </tbody>
  6831. </table>
  6832. <h3 id="external-secrets.io/v1.MachineIdentityScopeInWorkspace">MachineIdentityScopeInWorkspace
  6833. </h3>
  6834. <p>
  6835. (<em>Appears on:</em>
  6836. <a href="#external-secrets.io/v1.InfisicalProvider">InfisicalProvider</a>)
  6837. </p>
  6838. <p>
  6839. </p>
  6840. <table>
  6841. <thead>
  6842. <tr>
  6843. <th>Field</th>
  6844. <th>Description</th>
  6845. </tr>
  6846. </thead>
  6847. <tbody>
  6848. <tr>
  6849. <td>
  6850. <code>secretsPath</code></br>
  6851. <em>
  6852. string
  6853. </em>
  6854. </td>
  6855. <td>
  6856. <em>(Optional)</em>
  6857. <p>SecretsPath specifies the path to the secrets within the workspace. Defaults to &ldquo;/&rdquo; if not provided.</p>
  6858. </td>
  6859. </tr>
  6860. <tr>
  6861. <td>
  6862. <code>recursive</code></br>
  6863. <em>
  6864. bool
  6865. </em>
  6866. </td>
  6867. <td>
  6868. <em>(Optional)</em>
  6869. <p>Recursive indicates whether the secrets should be fetched recursively. Defaults to false if not provided.</p>
  6870. </td>
  6871. </tr>
  6872. <tr>
  6873. <td>
  6874. <code>environmentSlug</code></br>
  6875. <em>
  6876. string
  6877. </em>
  6878. </td>
  6879. <td>
  6880. <p>EnvironmentSlug is the required slug identifier for the environment.</p>
  6881. </td>
  6882. </tr>
  6883. <tr>
  6884. <td>
  6885. <code>projectSlug</code></br>
  6886. <em>
  6887. string
  6888. </em>
  6889. </td>
  6890. <td>
  6891. <p>ProjectSlug is the required slug identifier for the project.</p>
  6892. </td>
  6893. </tr>
  6894. <tr>
  6895. <td>
  6896. <code>expandSecretReferences</code></br>
  6897. <em>
  6898. bool
  6899. </em>
  6900. </td>
  6901. <td>
  6902. <em>(Optional)</em>
  6903. <p>ExpandSecretReferences indicates whether secret references should be expanded. Defaults to true if not provided.</p>
  6904. </td>
  6905. </tr>
  6906. </tbody>
  6907. </table>
  6908. <h3 id="external-secrets.io/v1.MaintenanceStatus">MaintenanceStatus
  6909. (<code>bool</code> alias)</p></h3>
  6910. <p>
  6911. </p>
  6912. <table>
  6913. <thead>
  6914. <tr>
  6915. <th>Value</th>
  6916. <th>Description</th>
  6917. </tr>
  6918. </thead>
  6919. <tbody><tr><td><p>true</p></td>
  6920. <td></td>
  6921. </tr><tr><td><p>false</p></td>
  6922. <td></td>
  6923. </tr></tbody>
  6924. </table>
  6925. <h3 id="external-secrets.io/v1.NTLMProtocol">NTLMProtocol
  6926. </h3>
  6927. <p>
  6928. (<em>Appears on:</em>
  6929. <a href="#external-secrets.io/v1.AuthorizationProtocol">AuthorizationProtocol</a>)
  6930. </p>
  6931. <p>
  6932. <p>NTLMProtocol contains the NTLM-specific configuration.</p>
  6933. </p>
  6934. <table>
  6935. <thead>
  6936. <tr>
  6937. <th>Field</th>
  6938. <th>Description</th>
  6939. </tr>
  6940. </thead>
  6941. <tbody>
  6942. <tr>
  6943. <td>
  6944. <code>usernameSecret</code></br>
  6945. <em>
  6946. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6947. External Secrets meta/v1.SecretKeySelector
  6948. </a>
  6949. </em>
  6950. </td>
  6951. <td>
  6952. </td>
  6953. </tr>
  6954. <tr>
  6955. <td>
  6956. <code>passwordSecret</code></br>
  6957. <em>
  6958. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6959. External Secrets meta/v1.SecretKeySelector
  6960. </a>
  6961. </em>
  6962. </td>
  6963. <td>
  6964. </td>
  6965. </tr>
  6966. </tbody>
  6967. </table>
  6968. <h3 id="external-secrets.io/v1.NoSecretError">NoSecretError
  6969. </h3>
  6970. <p>
  6971. <p>NoSecretError shall be returned when a GetSecret can not find the
  6972. desired secret. This is used for deletionPolicy.</p>
  6973. </p>
  6974. <h3 id="external-secrets.io/v1.NotModifiedError">NotModifiedError
  6975. </h3>
  6976. <p>
  6977. <p>NotModifiedError to signal that the webhook received no changes,
  6978. and it should just return without doing anything.</p>
  6979. </p>
  6980. <h3 id="external-secrets.io/v1.OnboardbaseAuthSecretRef">OnboardbaseAuthSecretRef
  6981. </h3>
  6982. <p>
  6983. (<em>Appears on:</em>
  6984. <a href="#external-secrets.io/v1.OnboardbaseProvider">OnboardbaseProvider</a>)
  6985. </p>
  6986. <p>
  6987. <p>OnboardbaseAuthSecretRef holds secret references for onboardbase API Key credentials.</p>
  6988. </p>
  6989. <table>
  6990. <thead>
  6991. <tr>
  6992. <th>Field</th>
  6993. <th>Description</th>
  6994. </tr>
  6995. </thead>
  6996. <tbody>
  6997. <tr>
  6998. <td>
  6999. <code>apiKeyRef</code></br>
  7000. <em>
  7001. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7002. External Secrets meta/v1.SecretKeySelector
  7003. </a>
  7004. </em>
  7005. </td>
  7006. <td>
  7007. <p>OnboardbaseAPIKey is the APIKey generated by an admin account.
  7008. It is used to recognize and authorize access to a project and environment within onboardbase</p>
  7009. </td>
  7010. </tr>
  7011. <tr>
  7012. <td>
  7013. <code>passcodeRef</code></br>
  7014. <em>
  7015. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7016. External Secrets meta/v1.SecretKeySelector
  7017. </a>
  7018. </em>
  7019. </td>
  7020. <td>
  7021. <p>OnboardbasePasscode is the passcode attached to the API Key</p>
  7022. </td>
  7023. </tr>
  7024. </tbody>
  7025. </table>
  7026. <h3 id="external-secrets.io/v1.OnboardbaseProvider">OnboardbaseProvider
  7027. </h3>
  7028. <p>
  7029. (<em>Appears on:</em>
  7030. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7031. </p>
  7032. <p>
  7033. <p>OnboardbaseProvider configures a store to sync secrets using the Onboardbase provider.
  7034. Project and Config are required if not using a Service Token.</p>
  7035. </p>
  7036. <table>
  7037. <thead>
  7038. <tr>
  7039. <th>Field</th>
  7040. <th>Description</th>
  7041. </tr>
  7042. </thead>
  7043. <tbody>
  7044. <tr>
  7045. <td>
  7046. <code>auth</code></br>
  7047. <em>
  7048. <a href="#external-secrets.io/v1.OnboardbaseAuthSecretRef">
  7049. OnboardbaseAuthSecretRef
  7050. </a>
  7051. </em>
  7052. </td>
  7053. <td>
  7054. <p>Auth configures how the Operator authenticates with the Onboardbase API</p>
  7055. </td>
  7056. </tr>
  7057. <tr>
  7058. <td>
  7059. <code>apiHost</code></br>
  7060. <em>
  7061. string
  7062. </em>
  7063. </td>
  7064. <td>
  7065. <p>APIHost use this to configure the host url for the API for selfhosted installation, default is <a href="https://public.onboardbase.com/api/v1/">https://public.onboardbase.com/api/v1/</a></p>
  7066. </td>
  7067. </tr>
  7068. <tr>
  7069. <td>
  7070. <code>project</code></br>
  7071. <em>
  7072. string
  7073. </em>
  7074. </td>
  7075. <td>
  7076. <p>Project is an onboardbase project that the secrets should be pulled from</p>
  7077. </td>
  7078. </tr>
  7079. <tr>
  7080. <td>
  7081. <code>environment</code></br>
  7082. <em>
  7083. string
  7084. </em>
  7085. </td>
  7086. <td>
  7087. <p>Environment is the name of an environmnent within a project to pull the secrets from</p>
  7088. </td>
  7089. </tr>
  7090. </tbody>
  7091. </table>
  7092. <h3 id="external-secrets.io/v1.OnePasswordAuth">OnePasswordAuth
  7093. </h3>
  7094. <p>
  7095. (<em>Appears on:</em>
  7096. <a href="#external-secrets.io/v1.OnePasswordProvider">OnePasswordProvider</a>)
  7097. </p>
  7098. <p>
  7099. <p>OnePasswordAuth contains a secretRef for credentials.</p>
  7100. </p>
  7101. <table>
  7102. <thead>
  7103. <tr>
  7104. <th>Field</th>
  7105. <th>Description</th>
  7106. </tr>
  7107. </thead>
  7108. <tbody>
  7109. <tr>
  7110. <td>
  7111. <code>secretRef</code></br>
  7112. <em>
  7113. <a href="#external-secrets.io/v1.OnePasswordAuthSecretRef">
  7114. OnePasswordAuthSecretRef
  7115. </a>
  7116. </em>
  7117. </td>
  7118. <td>
  7119. </td>
  7120. </tr>
  7121. </tbody>
  7122. </table>
  7123. <h3 id="external-secrets.io/v1.OnePasswordAuthSecretRef">OnePasswordAuthSecretRef
  7124. </h3>
  7125. <p>
  7126. (<em>Appears on:</em>
  7127. <a href="#external-secrets.io/v1.OnePasswordAuth">OnePasswordAuth</a>)
  7128. </p>
  7129. <p>
  7130. <p>OnePasswordAuthSecretRef holds secret references for 1Password credentials.</p>
  7131. </p>
  7132. <table>
  7133. <thead>
  7134. <tr>
  7135. <th>Field</th>
  7136. <th>Description</th>
  7137. </tr>
  7138. </thead>
  7139. <tbody>
  7140. <tr>
  7141. <td>
  7142. <code>connectTokenSecretRef</code></br>
  7143. <em>
  7144. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7145. External Secrets meta/v1.SecretKeySelector
  7146. </a>
  7147. </em>
  7148. </td>
  7149. <td>
  7150. <p>The ConnectToken is used for authentication to a 1Password Connect Server.</p>
  7151. </td>
  7152. </tr>
  7153. </tbody>
  7154. </table>
  7155. <h3 id="external-secrets.io/v1.OnePasswordProvider">OnePasswordProvider
  7156. </h3>
  7157. <p>
  7158. (<em>Appears on:</em>
  7159. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7160. </p>
  7161. <p>
  7162. <p>OnePasswordProvider configures a store to sync secrets using the 1Password Secret Manager provider.</p>
  7163. </p>
  7164. <table>
  7165. <thead>
  7166. <tr>
  7167. <th>Field</th>
  7168. <th>Description</th>
  7169. </tr>
  7170. </thead>
  7171. <tbody>
  7172. <tr>
  7173. <td>
  7174. <code>auth</code></br>
  7175. <em>
  7176. <a href="#external-secrets.io/v1.OnePasswordAuth">
  7177. OnePasswordAuth
  7178. </a>
  7179. </em>
  7180. </td>
  7181. <td>
  7182. <p>Auth defines the information necessary to authenticate against OnePassword Connect Server</p>
  7183. </td>
  7184. </tr>
  7185. <tr>
  7186. <td>
  7187. <code>connectHost</code></br>
  7188. <em>
  7189. string
  7190. </em>
  7191. </td>
  7192. <td>
  7193. <p>ConnectHost defines the OnePassword Connect Server to connect to</p>
  7194. </td>
  7195. </tr>
  7196. <tr>
  7197. <td>
  7198. <code>vaults</code></br>
  7199. <em>
  7200. map[string]int
  7201. </em>
  7202. </td>
  7203. <td>
  7204. <p>Vaults defines which OnePassword vaults to search in which order</p>
  7205. </td>
  7206. </tr>
  7207. </tbody>
  7208. </table>
  7209. <h3 id="external-secrets.io/v1.OnePasswordSDKAuth">OnePasswordSDKAuth
  7210. </h3>
  7211. <p>
  7212. (<em>Appears on:</em>
  7213. <a href="#external-secrets.io/v1.OnePasswordSDKProvider">OnePasswordSDKProvider</a>)
  7214. </p>
  7215. <p>
  7216. <p>OnePasswordSDKAuth contains a secretRef for the service account token.</p>
  7217. </p>
  7218. <table>
  7219. <thead>
  7220. <tr>
  7221. <th>Field</th>
  7222. <th>Description</th>
  7223. </tr>
  7224. </thead>
  7225. <tbody>
  7226. <tr>
  7227. <td>
  7228. <code>serviceAccountSecretRef</code></br>
  7229. <em>
  7230. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7231. External Secrets meta/v1.SecretKeySelector
  7232. </a>
  7233. </em>
  7234. </td>
  7235. <td>
  7236. <p>ServiceAccountSecretRef points to the secret containing the token to access 1Password vault.</p>
  7237. </td>
  7238. </tr>
  7239. </tbody>
  7240. </table>
  7241. <h3 id="external-secrets.io/v1.OnePasswordSDKProvider">OnePasswordSDKProvider
  7242. </h3>
  7243. <p>
  7244. (<em>Appears on:</em>
  7245. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7246. </p>
  7247. <p>
  7248. <p>OnePasswordSDKProvider configures a store to sync secrets using the 1Password sdk.</p>
  7249. </p>
  7250. <table>
  7251. <thead>
  7252. <tr>
  7253. <th>Field</th>
  7254. <th>Description</th>
  7255. </tr>
  7256. </thead>
  7257. <tbody>
  7258. <tr>
  7259. <td>
  7260. <code>vault</code></br>
  7261. <em>
  7262. string
  7263. </em>
  7264. </td>
  7265. <td>
  7266. <p>Vault defines the vault&rsquo;s name to access. Do NOT add op:// prefix. This will be done automatically.</p>
  7267. </td>
  7268. </tr>
  7269. <tr>
  7270. <td>
  7271. <code>integrationInfo</code></br>
  7272. <em>
  7273. <a href="#external-secrets.io/v1.IntegrationInfo">
  7274. IntegrationInfo
  7275. </a>
  7276. </em>
  7277. </td>
  7278. <td>
  7279. <em>(Optional)</em>
  7280. <p>IntegrationInfo specifies the name and version of the integration built using the 1Password Go SDK.
  7281. If you don&rsquo;t know which name and version to use, use <code>DefaultIntegrationName</code> and <code>DefaultIntegrationVersion</code>, respectively.</p>
  7282. </td>
  7283. </tr>
  7284. <tr>
  7285. <td>
  7286. <code>auth</code></br>
  7287. <em>
  7288. <a href="#external-secrets.io/v1.OnePasswordSDKAuth">
  7289. OnePasswordSDKAuth
  7290. </a>
  7291. </em>
  7292. </td>
  7293. <td>
  7294. <p>Auth defines the information necessary to authenticate against OnePassword API.</p>
  7295. </td>
  7296. </tr>
  7297. </tbody>
  7298. </table>
  7299. <h3 id="external-secrets.io/v1.OracleAuth">OracleAuth
  7300. </h3>
  7301. <p>
  7302. (<em>Appears on:</em>
  7303. <a href="#external-secrets.io/v1.OracleProvider">OracleProvider</a>)
  7304. </p>
  7305. <p>
  7306. </p>
  7307. <table>
  7308. <thead>
  7309. <tr>
  7310. <th>Field</th>
  7311. <th>Description</th>
  7312. </tr>
  7313. </thead>
  7314. <tbody>
  7315. <tr>
  7316. <td>
  7317. <code>tenancy</code></br>
  7318. <em>
  7319. string
  7320. </em>
  7321. </td>
  7322. <td>
  7323. <p>Tenancy is the tenancy OCID where user is located.</p>
  7324. </td>
  7325. </tr>
  7326. <tr>
  7327. <td>
  7328. <code>user</code></br>
  7329. <em>
  7330. string
  7331. </em>
  7332. </td>
  7333. <td>
  7334. <p>User is an access OCID specific to the account.</p>
  7335. </td>
  7336. </tr>
  7337. <tr>
  7338. <td>
  7339. <code>secretRef</code></br>
  7340. <em>
  7341. <a href="#external-secrets.io/v1.OracleSecretRef">
  7342. OracleSecretRef
  7343. </a>
  7344. </em>
  7345. </td>
  7346. <td>
  7347. <p>SecretRef to pass through sensitive information.</p>
  7348. </td>
  7349. </tr>
  7350. </tbody>
  7351. </table>
  7352. <h3 id="external-secrets.io/v1.OraclePrincipalType">OraclePrincipalType
  7353. (<code>string</code> alias)</p></h3>
  7354. <p>
  7355. (<em>Appears on:</em>
  7356. <a href="#external-secrets.io/v1.OracleProvider">OracleProvider</a>)
  7357. </p>
  7358. <p>
  7359. </p>
  7360. <table>
  7361. <thead>
  7362. <tr>
  7363. <th>Value</th>
  7364. <th>Description</th>
  7365. </tr>
  7366. </thead>
  7367. <tbody><tr><td><p>&#34;InstancePrincipal&#34;</p></td>
  7368. <td><p>InstancePrincipal represents a instance principal.</p>
  7369. </td>
  7370. </tr><tr><td><p>&#34;UserPrincipal&#34;</p></td>
  7371. <td><p>UserPrincipal represents a user principal.</p>
  7372. </td>
  7373. </tr><tr><td><p>&#34;Workload&#34;</p></td>
  7374. <td><p>WorkloadPrincipal represents a workload principal.</p>
  7375. </td>
  7376. </tr></tbody>
  7377. </table>
  7378. <h3 id="external-secrets.io/v1.OracleProvider">OracleProvider
  7379. </h3>
  7380. <p>
  7381. (<em>Appears on:</em>
  7382. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7383. </p>
  7384. <p>
  7385. <p>Configures an store to sync secrets using a Oracle Vault
  7386. backend.</p>
  7387. </p>
  7388. <table>
  7389. <thead>
  7390. <tr>
  7391. <th>Field</th>
  7392. <th>Description</th>
  7393. </tr>
  7394. </thead>
  7395. <tbody>
  7396. <tr>
  7397. <td>
  7398. <code>region</code></br>
  7399. <em>
  7400. string
  7401. </em>
  7402. </td>
  7403. <td>
  7404. <p>Region is the region where vault is located.</p>
  7405. </td>
  7406. </tr>
  7407. <tr>
  7408. <td>
  7409. <code>vault</code></br>
  7410. <em>
  7411. string
  7412. </em>
  7413. </td>
  7414. <td>
  7415. <p>Vault is the vault&rsquo;s OCID of the specific vault where secret is located.</p>
  7416. </td>
  7417. </tr>
  7418. <tr>
  7419. <td>
  7420. <code>compartment</code></br>
  7421. <em>
  7422. string
  7423. </em>
  7424. </td>
  7425. <td>
  7426. <em>(Optional)</em>
  7427. <p>Compartment is the vault compartment OCID.
  7428. Required for PushSecret</p>
  7429. </td>
  7430. </tr>
  7431. <tr>
  7432. <td>
  7433. <code>encryptionKey</code></br>
  7434. <em>
  7435. string
  7436. </em>
  7437. </td>
  7438. <td>
  7439. <em>(Optional)</em>
  7440. <p>EncryptionKey is the OCID of the encryption key within the vault.
  7441. Required for PushSecret</p>
  7442. </td>
  7443. </tr>
  7444. <tr>
  7445. <td>
  7446. <code>principalType</code></br>
  7447. <em>
  7448. <a href="#external-secrets.io/v1.OraclePrincipalType">
  7449. OraclePrincipalType
  7450. </a>
  7451. </em>
  7452. </td>
  7453. <td>
  7454. <em>(Optional)</em>
  7455. <p>The type of principal to use for authentication. If left blank, the Auth struct will
  7456. determine the principal type. This optional field must be specified if using
  7457. workload identity.</p>
  7458. </td>
  7459. </tr>
  7460. <tr>
  7461. <td>
  7462. <code>auth</code></br>
  7463. <em>
  7464. <a href="#external-secrets.io/v1.OracleAuth">
  7465. OracleAuth
  7466. </a>
  7467. </em>
  7468. </td>
  7469. <td>
  7470. <em>(Optional)</em>
  7471. <p>Auth configures how secret-manager authenticates with the Oracle Vault.
  7472. If empty, use the instance principal, otherwise the user credentials specified in Auth.</p>
  7473. </td>
  7474. </tr>
  7475. <tr>
  7476. <td>
  7477. <code>serviceAccountRef</code></br>
  7478. <em>
  7479. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  7480. External Secrets meta/v1.ServiceAccountSelector
  7481. </a>
  7482. </em>
  7483. </td>
  7484. <td>
  7485. <em>(Optional)</em>
  7486. <p>ServiceAccountRef specified the service account
  7487. that should be used when authenticating with WorkloadIdentity.</p>
  7488. </td>
  7489. </tr>
  7490. </tbody>
  7491. </table>
  7492. <h3 id="external-secrets.io/v1.OracleSecretRef">OracleSecretRef
  7493. </h3>
  7494. <p>
  7495. (<em>Appears on:</em>
  7496. <a href="#external-secrets.io/v1.OracleAuth">OracleAuth</a>)
  7497. </p>
  7498. <p>
  7499. </p>
  7500. <table>
  7501. <thead>
  7502. <tr>
  7503. <th>Field</th>
  7504. <th>Description</th>
  7505. </tr>
  7506. </thead>
  7507. <tbody>
  7508. <tr>
  7509. <td>
  7510. <code>privatekey</code></br>
  7511. <em>
  7512. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7513. External Secrets meta/v1.SecretKeySelector
  7514. </a>
  7515. </em>
  7516. </td>
  7517. <td>
  7518. <p>PrivateKey is the user&rsquo;s API Signing Key in PEM format, used for authentication.</p>
  7519. </td>
  7520. </tr>
  7521. <tr>
  7522. <td>
  7523. <code>fingerprint</code></br>
  7524. <em>
  7525. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7526. External Secrets meta/v1.SecretKeySelector
  7527. </a>
  7528. </em>
  7529. </td>
  7530. <td>
  7531. <p>Fingerprint is the fingerprint of the API private key.</p>
  7532. </td>
  7533. </tr>
  7534. </tbody>
  7535. </table>
  7536. <h3 id="external-secrets.io/v1.PassboltAuth">PassboltAuth
  7537. </h3>
  7538. <p>
  7539. (<em>Appears on:</em>
  7540. <a href="#external-secrets.io/v1.PassboltProvider">PassboltProvider</a>)
  7541. </p>
  7542. <p>
  7543. <p>Passbolt contains a secretRef for the passbolt credentials.</p>
  7544. </p>
  7545. <table>
  7546. <thead>
  7547. <tr>
  7548. <th>Field</th>
  7549. <th>Description</th>
  7550. </tr>
  7551. </thead>
  7552. <tbody>
  7553. <tr>
  7554. <td>
  7555. <code>passwordSecretRef</code></br>
  7556. <em>
  7557. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7558. External Secrets meta/v1.SecretKeySelector
  7559. </a>
  7560. </em>
  7561. </td>
  7562. <td>
  7563. </td>
  7564. </tr>
  7565. <tr>
  7566. <td>
  7567. <code>privateKeySecretRef</code></br>
  7568. <em>
  7569. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7570. External Secrets meta/v1.SecretKeySelector
  7571. </a>
  7572. </em>
  7573. </td>
  7574. <td>
  7575. </td>
  7576. </tr>
  7577. </tbody>
  7578. </table>
  7579. <h3 id="external-secrets.io/v1.PassboltProvider">PassboltProvider
  7580. </h3>
  7581. <p>
  7582. (<em>Appears on:</em>
  7583. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7584. </p>
  7585. <p>
  7586. </p>
  7587. <table>
  7588. <thead>
  7589. <tr>
  7590. <th>Field</th>
  7591. <th>Description</th>
  7592. </tr>
  7593. </thead>
  7594. <tbody>
  7595. <tr>
  7596. <td>
  7597. <code>auth</code></br>
  7598. <em>
  7599. <a href="#external-secrets.io/v1.PassboltAuth">
  7600. PassboltAuth
  7601. </a>
  7602. </em>
  7603. </td>
  7604. <td>
  7605. <p>Auth defines the information necessary to authenticate against Passbolt Server</p>
  7606. </td>
  7607. </tr>
  7608. <tr>
  7609. <td>
  7610. <code>host</code></br>
  7611. <em>
  7612. string
  7613. </em>
  7614. </td>
  7615. <td>
  7616. <p>Host defines the Passbolt Server to connect to</p>
  7617. </td>
  7618. </tr>
  7619. </tbody>
  7620. </table>
  7621. <h3 id="external-secrets.io/v1.PasswordDepotAuth">PasswordDepotAuth
  7622. </h3>
  7623. <p>
  7624. (<em>Appears on:</em>
  7625. <a href="#external-secrets.io/v1.PasswordDepotProvider">PasswordDepotProvider</a>)
  7626. </p>
  7627. <p>
  7628. </p>
  7629. <table>
  7630. <thead>
  7631. <tr>
  7632. <th>Field</th>
  7633. <th>Description</th>
  7634. </tr>
  7635. </thead>
  7636. <tbody>
  7637. <tr>
  7638. <td>
  7639. <code>secretRef</code></br>
  7640. <em>
  7641. <a href="#external-secrets.io/v1.PasswordDepotSecretRef">
  7642. PasswordDepotSecretRef
  7643. </a>
  7644. </em>
  7645. </td>
  7646. <td>
  7647. </td>
  7648. </tr>
  7649. </tbody>
  7650. </table>
  7651. <h3 id="external-secrets.io/v1.PasswordDepotProvider">PasswordDepotProvider
  7652. </h3>
  7653. <p>
  7654. (<em>Appears on:</em>
  7655. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7656. </p>
  7657. <p>
  7658. <p>Configures a store to sync secrets with a Password Depot instance.</p>
  7659. </p>
  7660. <table>
  7661. <thead>
  7662. <tr>
  7663. <th>Field</th>
  7664. <th>Description</th>
  7665. </tr>
  7666. </thead>
  7667. <tbody>
  7668. <tr>
  7669. <td>
  7670. <code>host</code></br>
  7671. <em>
  7672. string
  7673. </em>
  7674. </td>
  7675. <td>
  7676. <p>URL configures the Password Depot instance URL.</p>
  7677. </td>
  7678. </tr>
  7679. <tr>
  7680. <td>
  7681. <code>database</code></br>
  7682. <em>
  7683. string
  7684. </em>
  7685. </td>
  7686. <td>
  7687. <p>Database to use as source</p>
  7688. </td>
  7689. </tr>
  7690. <tr>
  7691. <td>
  7692. <code>auth</code></br>
  7693. <em>
  7694. <a href="#external-secrets.io/v1.PasswordDepotAuth">
  7695. PasswordDepotAuth
  7696. </a>
  7697. </em>
  7698. </td>
  7699. <td>
  7700. <p>Auth configures how secret-manager authenticates with a Password Depot instance.</p>
  7701. </td>
  7702. </tr>
  7703. </tbody>
  7704. </table>
  7705. <h3 id="external-secrets.io/v1.PasswordDepotSecretRef">PasswordDepotSecretRef
  7706. </h3>
  7707. <p>
  7708. (<em>Appears on:</em>
  7709. <a href="#external-secrets.io/v1.PasswordDepotAuth">PasswordDepotAuth</a>)
  7710. </p>
  7711. <p>
  7712. </p>
  7713. <table>
  7714. <thead>
  7715. <tr>
  7716. <th>Field</th>
  7717. <th>Description</th>
  7718. </tr>
  7719. </thead>
  7720. <tbody>
  7721. <tr>
  7722. <td>
  7723. <code>credentials</code></br>
  7724. <em>
  7725. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7726. External Secrets meta/v1.SecretKeySelector
  7727. </a>
  7728. </em>
  7729. </td>
  7730. <td>
  7731. <em>(Optional)</em>
  7732. <p>Username / Password is used for authentication.</p>
  7733. </td>
  7734. </tr>
  7735. </tbody>
  7736. </table>
  7737. <h3 id="external-secrets.io/v1.PreviderAuth">PreviderAuth
  7738. </h3>
  7739. <p>
  7740. (<em>Appears on:</em>
  7741. <a href="#external-secrets.io/v1.PreviderProvider">PreviderProvider</a>)
  7742. </p>
  7743. <p>
  7744. <p>PreviderAuth contains a secretRef for credentials.</p>
  7745. </p>
  7746. <table>
  7747. <thead>
  7748. <tr>
  7749. <th>Field</th>
  7750. <th>Description</th>
  7751. </tr>
  7752. </thead>
  7753. <tbody>
  7754. <tr>
  7755. <td>
  7756. <code>secretRef</code></br>
  7757. <em>
  7758. <a href="#external-secrets.io/v1.PreviderAuthSecretRef">
  7759. PreviderAuthSecretRef
  7760. </a>
  7761. </em>
  7762. </td>
  7763. <td>
  7764. <em>(Optional)</em>
  7765. </td>
  7766. </tr>
  7767. </tbody>
  7768. </table>
  7769. <h3 id="external-secrets.io/v1.PreviderAuthSecretRef">PreviderAuthSecretRef
  7770. </h3>
  7771. <p>
  7772. (<em>Appears on:</em>
  7773. <a href="#external-secrets.io/v1.PreviderAuth">PreviderAuth</a>)
  7774. </p>
  7775. <p>
  7776. <p>PreviderAuthSecretRef holds secret references for Previder Vault credentials.</p>
  7777. </p>
  7778. <table>
  7779. <thead>
  7780. <tr>
  7781. <th>Field</th>
  7782. <th>Description</th>
  7783. </tr>
  7784. </thead>
  7785. <tbody>
  7786. <tr>
  7787. <td>
  7788. <code>accessToken</code></br>
  7789. <em>
  7790. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7791. External Secrets meta/v1.SecretKeySelector
  7792. </a>
  7793. </em>
  7794. </td>
  7795. <td>
  7796. <p>The AccessToken is used for authentication</p>
  7797. </td>
  7798. </tr>
  7799. </tbody>
  7800. </table>
  7801. <h3 id="external-secrets.io/v1.PreviderProvider">PreviderProvider
  7802. </h3>
  7803. <p>
  7804. (<em>Appears on:</em>
  7805. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7806. </p>
  7807. <p>
  7808. <p>PreviderProvider configures a store to sync secrets using the Previder Secret Manager provider.</p>
  7809. </p>
  7810. <table>
  7811. <thead>
  7812. <tr>
  7813. <th>Field</th>
  7814. <th>Description</th>
  7815. </tr>
  7816. </thead>
  7817. <tbody>
  7818. <tr>
  7819. <td>
  7820. <code>auth</code></br>
  7821. <em>
  7822. <a href="#external-secrets.io/v1.PreviderAuth">
  7823. PreviderAuth
  7824. </a>
  7825. </em>
  7826. </td>
  7827. <td>
  7828. </td>
  7829. </tr>
  7830. <tr>
  7831. <td>
  7832. <code>baseUri</code></br>
  7833. <em>
  7834. string
  7835. </em>
  7836. </td>
  7837. <td>
  7838. <em>(Optional)</em>
  7839. </td>
  7840. </tr>
  7841. </tbody>
  7842. </table>
  7843. <h3 id="external-secrets.io/v1.Provider">Provider
  7844. </h3>
  7845. <p>
  7846. <p>Provider is a common interface for interacting with secret backends.</p>
  7847. </p>
  7848. <h3 id="external-secrets.io/v1.PulumiProvider">PulumiProvider
  7849. </h3>
  7850. <p>
  7851. (<em>Appears on:</em>
  7852. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7853. </p>
  7854. <p>
  7855. </p>
  7856. <table>
  7857. <thead>
  7858. <tr>
  7859. <th>Field</th>
  7860. <th>Description</th>
  7861. </tr>
  7862. </thead>
  7863. <tbody>
  7864. <tr>
  7865. <td>
  7866. <code>apiUrl</code></br>
  7867. <em>
  7868. string
  7869. </em>
  7870. </td>
  7871. <td>
  7872. <p>APIURL is the URL of the Pulumi API.</p>
  7873. </td>
  7874. </tr>
  7875. <tr>
  7876. <td>
  7877. <code>accessToken</code></br>
  7878. <em>
  7879. <a href="#external-secrets.io/v1.PulumiProviderSecretRef">
  7880. PulumiProviderSecretRef
  7881. </a>
  7882. </em>
  7883. </td>
  7884. <td>
  7885. <p>AccessToken is the access tokens to sign in to the Pulumi Cloud Console.</p>
  7886. </td>
  7887. </tr>
  7888. <tr>
  7889. <td>
  7890. <code>organization</code></br>
  7891. <em>
  7892. string
  7893. </em>
  7894. </td>
  7895. <td>
  7896. <p>Organization are a space to collaborate on shared projects and stacks.
  7897. To create a new organization, visit <a href="https://app.pulumi.com/">https://app.pulumi.com/</a> and click &ldquo;New Organization&rdquo;.</p>
  7898. </td>
  7899. </tr>
  7900. <tr>
  7901. <td>
  7902. <code>project</code></br>
  7903. <em>
  7904. string
  7905. </em>
  7906. </td>
  7907. <td>
  7908. <p>Project is the name of the Pulumi ESC project the environment belongs to.</p>
  7909. </td>
  7910. </tr>
  7911. <tr>
  7912. <td>
  7913. <code>environment</code></br>
  7914. <em>
  7915. string
  7916. </em>
  7917. </td>
  7918. <td>
  7919. <p>Environment are YAML documents composed of static key-value pairs, programmatic expressions,
  7920. dynamically retrieved values from supported providers including all major clouds,
  7921. and other Pulumi ESC environments.
  7922. To create a new environment, visit <a href="https://www.pulumi.com/docs/esc/environments/">https://www.pulumi.com/docs/esc/environments/</a> for more information.</p>
  7923. </td>
  7924. </tr>
  7925. </tbody>
  7926. </table>
  7927. <h3 id="external-secrets.io/v1.PulumiProviderSecretRef">PulumiProviderSecretRef
  7928. </h3>
  7929. <p>
  7930. (<em>Appears on:</em>
  7931. <a href="#external-secrets.io/v1.PulumiProvider">PulumiProvider</a>)
  7932. </p>
  7933. <p>
  7934. </p>
  7935. <table>
  7936. <thead>
  7937. <tr>
  7938. <th>Field</th>
  7939. <th>Description</th>
  7940. </tr>
  7941. </thead>
  7942. <tbody>
  7943. <tr>
  7944. <td>
  7945. <code>secretRef</code></br>
  7946. <em>
  7947. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7948. External Secrets meta/v1.SecretKeySelector
  7949. </a>
  7950. </em>
  7951. </td>
  7952. <td>
  7953. <p>SecretRef is a reference to a secret containing the Pulumi API token.</p>
  7954. </td>
  7955. </tr>
  7956. </tbody>
  7957. </table>
  7958. <h3 id="external-secrets.io/v1.PushSecretData">PushSecretData
  7959. </h3>
  7960. <p>
  7961. <p>PushSecretData is an interface to allow using v1alpha1.PushSecretData content in Provider registered in v1.</p>
  7962. </p>
  7963. <h3 id="external-secrets.io/v1.PushSecretRemoteRef">PushSecretRemoteRef
  7964. </h3>
  7965. <p>
  7966. <p>PushSecretRemoteRef is an interface to allow using v1alpha1.PushSecretRemoteRef in Provider registered in v1.</p>
  7967. </p>
  7968. <h3 id="external-secrets.io/v1.ScalewayProvider">ScalewayProvider
  7969. </h3>
  7970. <p>
  7971. (<em>Appears on:</em>
  7972. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7973. </p>
  7974. <p>
  7975. </p>
  7976. <table>
  7977. <thead>
  7978. <tr>
  7979. <th>Field</th>
  7980. <th>Description</th>
  7981. </tr>
  7982. </thead>
  7983. <tbody>
  7984. <tr>
  7985. <td>
  7986. <code>apiUrl</code></br>
  7987. <em>
  7988. string
  7989. </em>
  7990. </td>
  7991. <td>
  7992. <em>(Optional)</em>
  7993. <p>APIURL is the url of the api to use. Defaults to <a href="https://api.scaleway.com">https://api.scaleway.com</a></p>
  7994. </td>
  7995. </tr>
  7996. <tr>
  7997. <td>
  7998. <code>region</code></br>
  7999. <em>
  8000. string
  8001. </em>
  8002. </td>
  8003. <td>
  8004. <p>Region where your secrets are located: <a href="https://developers.scaleway.com/en/quickstart/#region-and-zone">https://developers.scaleway.com/en/quickstart/#region-and-zone</a></p>
  8005. </td>
  8006. </tr>
  8007. <tr>
  8008. <td>
  8009. <code>projectId</code></br>
  8010. <em>
  8011. string
  8012. </em>
  8013. </td>
  8014. <td>
  8015. <p>ProjectID is the id of your project, which you can find in the console: <a href="https://console.scaleway.com/project/settings">https://console.scaleway.com/project/settings</a></p>
  8016. </td>
  8017. </tr>
  8018. <tr>
  8019. <td>
  8020. <code>accessKey</code></br>
  8021. <em>
  8022. <a href="#external-secrets.io/v1.ScalewayProviderSecretRef">
  8023. ScalewayProviderSecretRef
  8024. </a>
  8025. </em>
  8026. </td>
  8027. <td>
  8028. <p>AccessKey is the non-secret part of the api key.</p>
  8029. </td>
  8030. </tr>
  8031. <tr>
  8032. <td>
  8033. <code>secretKey</code></br>
  8034. <em>
  8035. <a href="#external-secrets.io/v1.ScalewayProviderSecretRef">
  8036. ScalewayProviderSecretRef
  8037. </a>
  8038. </em>
  8039. </td>
  8040. <td>
  8041. <p>SecretKey is the non-secret part of the api key.</p>
  8042. </td>
  8043. </tr>
  8044. </tbody>
  8045. </table>
  8046. <h3 id="external-secrets.io/v1.ScalewayProviderSecretRef">ScalewayProviderSecretRef
  8047. </h3>
  8048. <p>
  8049. (<em>Appears on:</em>
  8050. <a href="#external-secrets.io/v1.ScalewayProvider">ScalewayProvider</a>)
  8051. </p>
  8052. <p>
  8053. </p>
  8054. <table>
  8055. <thead>
  8056. <tr>
  8057. <th>Field</th>
  8058. <th>Description</th>
  8059. </tr>
  8060. </thead>
  8061. <tbody>
  8062. <tr>
  8063. <td>
  8064. <code>value</code></br>
  8065. <em>
  8066. string
  8067. </em>
  8068. </td>
  8069. <td>
  8070. <em>(Optional)</em>
  8071. <p>Value can be specified directly to set a value without using a secret.</p>
  8072. </td>
  8073. </tr>
  8074. <tr>
  8075. <td>
  8076. <code>secretRef</code></br>
  8077. <em>
  8078. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8079. External Secrets meta/v1.SecretKeySelector
  8080. </a>
  8081. </em>
  8082. </td>
  8083. <td>
  8084. <em>(Optional)</em>
  8085. <p>SecretRef references a key in a secret that will be used as value.</p>
  8086. </td>
  8087. </tr>
  8088. </tbody>
  8089. </table>
  8090. <h3 id="external-secrets.io/v1.SecretServerProvider">SecretServerProvider
  8091. </h3>
  8092. <p>
  8093. (<em>Appears on:</em>
  8094. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8095. </p>
  8096. <p>
  8097. <p>See <a href="https://github.com/DelineaXPM/tss-sdk-go/blob/main/server/server.go">https://github.com/DelineaXPM/tss-sdk-go/blob/main/server/server.go</a>.</p>
  8098. </p>
  8099. <table>
  8100. <thead>
  8101. <tr>
  8102. <th>Field</th>
  8103. <th>Description</th>
  8104. </tr>
  8105. </thead>
  8106. <tbody>
  8107. <tr>
  8108. <td>
  8109. <code>username</code></br>
  8110. <em>
  8111. <a href="#external-secrets.io/v1.SecretServerProviderRef">
  8112. SecretServerProviderRef
  8113. </a>
  8114. </em>
  8115. </td>
  8116. <td>
  8117. <p>Username is the secret server account username.</p>
  8118. </td>
  8119. </tr>
  8120. <tr>
  8121. <td>
  8122. <code>password</code></br>
  8123. <em>
  8124. <a href="#external-secrets.io/v1.SecretServerProviderRef">
  8125. SecretServerProviderRef
  8126. </a>
  8127. </em>
  8128. </td>
  8129. <td>
  8130. <p>Password is the secret server account password.</p>
  8131. </td>
  8132. </tr>
  8133. <tr>
  8134. <td>
  8135. <code>serverURL</code></br>
  8136. <em>
  8137. string
  8138. </em>
  8139. </td>
  8140. <td>
  8141. <p>ServerURL
  8142. URL to your secret server installation</p>
  8143. </td>
  8144. </tr>
  8145. </tbody>
  8146. </table>
  8147. <h3 id="external-secrets.io/v1.SecretServerProviderRef">SecretServerProviderRef
  8148. </h3>
  8149. <p>
  8150. (<em>Appears on:</em>
  8151. <a href="#external-secrets.io/v1.SecretServerProvider">SecretServerProvider</a>)
  8152. </p>
  8153. <p>
  8154. </p>
  8155. <table>
  8156. <thead>
  8157. <tr>
  8158. <th>Field</th>
  8159. <th>Description</th>
  8160. </tr>
  8161. </thead>
  8162. <tbody>
  8163. <tr>
  8164. <td>
  8165. <code>value</code></br>
  8166. <em>
  8167. string
  8168. </em>
  8169. </td>
  8170. <td>
  8171. <em>(Optional)</em>
  8172. <p>Value can be specified directly to set a value without using a secret.</p>
  8173. </td>
  8174. </tr>
  8175. <tr>
  8176. <td>
  8177. <code>secretRef</code></br>
  8178. <em>
  8179. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8180. External Secrets meta/v1.SecretKeySelector
  8181. </a>
  8182. </em>
  8183. </td>
  8184. <td>
  8185. <em>(Optional)</em>
  8186. <p>SecretRef references a key in a secret that will be used as value.</p>
  8187. </td>
  8188. </tr>
  8189. </tbody>
  8190. </table>
  8191. <h3 id="external-secrets.io/v1.SecretStore">SecretStore
  8192. </h3>
  8193. <p>
  8194. <p>SecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  8195. </p>
  8196. <table>
  8197. <thead>
  8198. <tr>
  8199. <th>Field</th>
  8200. <th>Description</th>
  8201. </tr>
  8202. </thead>
  8203. <tbody>
  8204. <tr>
  8205. <td>
  8206. <code>metadata</code></br>
  8207. <em>
  8208. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  8209. Kubernetes meta/v1.ObjectMeta
  8210. </a>
  8211. </em>
  8212. </td>
  8213. <td>
  8214. Refer to the Kubernetes API documentation for the fields of the
  8215. <code>metadata</code> field.
  8216. </td>
  8217. </tr>
  8218. <tr>
  8219. <td>
  8220. <code>spec</code></br>
  8221. <em>
  8222. <a href="#external-secrets.io/v1.SecretStoreSpec">
  8223. SecretStoreSpec
  8224. </a>
  8225. </em>
  8226. </td>
  8227. <td>
  8228. <br/>
  8229. <br/>
  8230. <table>
  8231. <tr>
  8232. <td>
  8233. <code>controller</code></br>
  8234. <em>
  8235. string
  8236. </em>
  8237. </td>
  8238. <td>
  8239. <em>(Optional)</em>
  8240. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  8241. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  8242. </td>
  8243. </tr>
  8244. <tr>
  8245. <td>
  8246. <code>provider</code></br>
  8247. <em>
  8248. <a href="#external-secrets.io/v1.SecretStoreProvider">
  8249. SecretStoreProvider
  8250. </a>
  8251. </em>
  8252. </td>
  8253. <td>
  8254. <p>Used to configure the provider. Only one provider may be set</p>
  8255. </td>
  8256. </tr>
  8257. <tr>
  8258. <td>
  8259. <code>retrySettings</code></br>
  8260. <em>
  8261. <a href="#external-secrets.io/v1.SecretStoreRetrySettings">
  8262. SecretStoreRetrySettings
  8263. </a>
  8264. </em>
  8265. </td>
  8266. <td>
  8267. <em>(Optional)</em>
  8268. <p>Used to configure http retries if failed</p>
  8269. </td>
  8270. </tr>
  8271. <tr>
  8272. <td>
  8273. <code>refreshInterval</code></br>
  8274. <em>
  8275. int
  8276. </em>
  8277. </td>
  8278. <td>
  8279. <em>(Optional)</em>
  8280. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  8281. </td>
  8282. </tr>
  8283. <tr>
  8284. <td>
  8285. <code>conditions</code></br>
  8286. <em>
  8287. <a href="#external-secrets.io/v1.ClusterSecretStoreCondition">
  8288. []ClusterSecretStoreCondition
  8289. </a>
  8290. </em>
  8291. </td>
  8292. <td>
  8293. <em>(Optional)</em>
  8294. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  8295. </td>
  8296. </tr>
  8297. </table>
  8298. </td>
  8299. </tr>
  8300. <tr>
  8301. <td>
  8302. <code>status</code></br>
  8303. <em>
  8304. <a href="#external-secrets.io/v1.SecretStoreStatus">
  8305. SecretStoreStatus
  8306. </a>
  8307. </em>
  8308. </td>
  8309. <td>
  8310. </td>
  8311. </tr>
  8312. </tbody>
  8313. </table>
  8314. <h3 id="external-secrets.io/v1.SecretStoreCapabilities">SecretStoreCapabilities
  8315. (<code>string</code> alias)</p></h3>
  8316. <p>
  8317. (<em>Appears on:</em>
  8318. <a href="#external-secrets.io/v1.SecretStoreStatus">SecretStoreStatus</a>)
  8319. </p>
  8320. <p>
  8321. <p>SecretStoreCapabilities defines the possible operations a SecretStore can do.</p>
  8322. </p>
  8323. <table>
  8324. <thead>
  8325. <tr>
  8326. <th>Value</th>
  8327. <th>Description</th>
  8328. </tr>
  8329. </thead>
  8330. <tbody><tr><td><p>&#34;ReadOnly&#34;</p></td>
  8331. <td></td>
  8332. </tr><tr><td><p>&#34;ReadWrite&#34;</p></td>
  8333. <td></td>
  8334. </tr><tr><td><p>&#34;WriteOnly&#34;</p></td>
  8335. <td></td>
  8336. </tr></tbody>
  8337. </table>
  8338. <h3 id="external-secrets.io/v1.SecretStoreConditionType">SecretStoreConditionType
  8339. (<code>string</code> alias)</p></h3>
  8340. <p>
  8341. (<em>Appears on:</em>
  8342. <a href="#external-secrets.io/v1.SecretStoreStatusCondition">SecretStoreStatusCondition</a>)
  8343. </p>
  8344. <p>
  8345. </p>
  8346. <table>
  8347. <thead>
  8348. <tr>
  8349. <th>Value</th>
  8350. <th>Description</th>
  8351. </tr>
  8352. </thead>
  8353. <tbody><tr><td><p>&#34;Ready&#34;</p></td>
  8354. <td></td>
  8355. </tr></tbody>
  8356. </table>
  8357. <h3 id="external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider
  8358. </h3>
  8359. <p>
  8360. (<em>Appears on:</em>
  8361. <a href="#external-secrets.io/v1.SecretStoreSpec">SecretStoreSpec</a>)
  8362. </p>
  8363. <p>
  8364. <p>SecretStoreProvider contains the provider-specific configuration.</p>
  8365. </p>
  8366. <table>
  8367. <thead>
  8368. <tr>
  8369. <th>Field</th>
  8370. <th>Description</th>
  8371. </tr>
  8372. </thead>
  8373. <tbody>
  8374. <tr>
  8375. <td>
  8376. <code>aws</code></br>
  8377. <em>
  8378. <a href="#external-secrets.io/v1.AWSProvider">
  8379. AWSProvider
  8380. </a>
  8381. </em>
  8382. </td>
  8383. <td>
  8384. <em>(Optional)</em>
  8385. <p>AWS configures this store to sync secrets using AWS Secret Manager provider</p>
  8386. </td>
  8387. </tr>
  8388. <tr>
  8389. <td>
  8390. <code>azurekv</code></br>
  8391. <em>
  8392. <a href="#external-secrets.io/v1.AzureKVProvider">
  8393. AzureKVProvider
  8394. </a>
  8395. </em>
  8396. </td>
  8397. <td>
  8398. <em>(Optional)</em>
  8399. <p>AzureKV configures this store to sync secrets using Azure Key Vault provider</p>
  8400. </td>
  8401. </tr>
  8402. <tr>
  8403. <td>
  8404. <code>akeyless</code></br>
  8405. <em>
  8406. <a href="#external-secrets.io/v1.AkeylessProvider">
  8407. AkeylessProvider
  8408. </a>
  8409. </em>
  8410. </td>
  8411. <td>
  8412. <em>(Optional)</em>
  8413. <p>Akeyless configures this store to sync secrets using Akeyless Vault provider</p>
  8414. </td>
  8415. </tr>
  8416. <tr>
  8417. <td>
  8418. <code>bitwardensecretsmanager</code></br>
  8419. <em>
  8420. <a href="#external-secrets.io/v1.BitwardenSecretsManagerProvider">
  8421. BitwardenSecretsManagerProvider
  8422. </a>
  8423. </em>
  8424. </td>
  8425. <td>
  8426. <em>(Optional)</em>
  8427. <p>BitwardenSecretsManager configures this store to sync secrets using BitwardenSecretsManager provider</p>
  8428. </td>
  8429. </tr>
  8430. <tr>
  8431. <td>
  8432. <code>vault</code></br>
  8433. <em>
  8434. <a href="#external-secrets.io/v1.VaultProvider">
  8435. VaultProvider
  8436. </a>
  8437. </em>
  8438. </td>
  8439. <td>
  8440. <em>(Optional)</em>
  8441. <p>Vault configures this store to sync secrets using Hashi provider</p>
  8442. </td>
  8443. </tr>
  8444. <tr>
  8445. <td>
  8446. <code>gcpsm</code></br>
  8447. <em>
  8448. <a href="#external-secrets.io/v1.GCPSMProvider">
  8449. GCPSMProvider
  8450. </a>
  8451. </em>
  8452. </td>
  8453. <td>
  8454. <em>(Optional)</em>
  8455. <p>GCPSM configures this store to sync secrets using Google Cloud Platform Secret Manager provider</p>
  8456. </td>
  8457. </tr>
  8458. <tr>
  8459. <td>
  8460. <code>oracle</code></br>
  8461. <em>
  8462. <a href="#external-secrets.io/v1.OracleProvider">
  8463. OracleProvider
  8464. </a>
  8465. </em>
  8466. </td>
  8467. <td>
  8468. <em>(Optional)</em>
  8469. <p>Oracle configures this store to sync secrets using Oracle Vault provider</p>
  8470. </td>
  8471. </tr>
  8472. <tr>
  8473. <td>
  8474. <code>ibm</code></br>
  8475. <em>
  8476. <a href="#external-secrets.io/v1.IBMProvider">
  8477. IBMProvider
  8478. </a>
  8479. </em>
  8480. </td>
  8481. <td>
  8482. <em>(Optional)</em>
  8483. <p>IBM configures this store to sync secrets using IBM Cloud provider</p>
  8484. </td>
  8485. </tr>
  8486. <tr>
  8487. <td>
  8488. <code>yandexcertificatemanager</code></br>
  8489. <em>
  8490. <a href="#external-secrets.io/v1.YandexCertificateManagerProvider">
  8491. YandexCertificateManagerProvider
  8492. </a>
  8493. </em>
  8494. </td>
  8495. <td>
  8496. <em>(Optional)</em>
  8497. <p>YandexCertificateManager configures this store to sync secrets using Yandex Certificate Manager provider</p>
  8498. </td>
  8499. </tr>
  8500. <tr>
  8501. <td>
  8502. <code>yandexlockbox</code></br>
  8503. <em>
  8504. <a href="#external-secrets.io/v1.YandexLockboxProvider">
  8505. YandexLockboxProvider
  8506. </a>
  8507. </em>
  8508. </td>
  8509. <td>
  8510. <em>(Optional)</em>
  8511. <p>YandexLockbox configures this store to sync secrets using Yandex Lockbox provider</p>
  8512. </td>
  8513. </tr>
  8514. <tr>
  8515. <td>
  8516. <code>github</code></br>
  8517. <em>
  8518. <a href="#external-secrets.io/v1.GithubProvider">
  8519. GithubProvider
  8520. </a>
  8521. </em>
  8522. </td>
  8523. <td>
  8524. <em>(Optional)</em>
  8525. <p>Github configures this store to push Github Action secrets using Github API provider</p>
  8526. </td>
  8527. </tr>
  8528. <tr>
  8529. <td>
  8530. <code>gitlab</code></br>
  8531. <em>
  8532. <a href="#external-secrets.io/v1.GitlabProvider">
  8533. GitlabProvider
  8534. </a>
  8535. </em>
  8536. </td>
  8537. <td>
  8538. <em>(Optional)</em>
  8539. <p>GitLab configures this store to sync secrets using GitLab Variables provider</p>
  8540. </td>
  8541. </tr>
  8542. <tr>
  8543. <td>
  8544. <code>alibaba</code></br>
  8545. <em>
  8546. <a href="#external-secrets.io/v1.AlibabaProvider">
  8547. AlibabaProvider
  8548. </a>
  8549. </em>
  8550. </td>
  8551. <td>
  8552. <em>(Optional)</em>
  8553. <p>Alibaba configures this store to sync secrets using Alibaba Cloud provider</p>
  8554. </td>
  8555. </tr>
  8556. <tr>
  8557. <td>
  8558. <code>onepassword</code></br>
  8559. <em>
  8560. <a href="#external-secrets.io/v1.OnePasswordProvider">
  8561. OnePasswordProvider
  8562. </a>
  8563. </em>
  8564. </td>
  8565. <td>
  8566. <em>(Optional)</em>
  8567. <p>OnePassword configures this store to sync secrets using the 1Password Cloud provider</p>
  8568. </td>
  8569. </tr>
  8570. <tr>
  8571. <td>
  8572. <code>onepasswordSDK</code></br>
  8573. <em>
  8574. <a href="#external-secrets.io/v1.OnePasswordSDKProvider">
  8575. OnePasswordSDKProvider
  8576. </a>
  8577. </em>
  8578. </td>
  8579. <td>
  8580. <em>(Optional)</em>
  8581. <p>OnePasswordSDK configures this store to use 1Password&rsquo;s new Go SDK to sync secrets.</p>
  8582. </td>
  8583. </tr>
  8584. <tr>
  8585. <td>
  8586. <code>webhook</code></br>
  8587. <em>
  8588. <a href="#external-secrets.io/v1.WebhookProvider">
  8589. WebhookProvider
  8590. </a>
  8591. </em>
  8592. </td>
  8593. <td>
  8594. <em>(Optional)</em>
  8595. <p>Webhook configures this store to sync secrets using a generic templated webhook</p>
  8596. </td>
  8597. </tr>
  8598. <tr>
  8599. <td>
  8600. <code>kubernetes</code></br>
  8601. <em>
  8602. <a href="#external-secrets.io/v1.KubernetesProvider">
  8603. KubernetesProvider
  8604. </a>
  8605. </em>
  8606. </td>
  8607. <td>
  8608. <em>(Optional)</em>
  8609. <p>Kubernetes configures this store to sync secrets using a Kubernetes cluster provider</p>
  8610. </td>
  8611. </tr>
  8612. <tr>
  8613. <td>
  8614. <code>fake</code></br>
  8615. <em>
  8616. <a href="#external-secrets.io/v1.FakeProvider">
  8617. FakeProvider
  8618. </a>
  8619. </em>
  8620. </td>
  8621. <td>
  8622. <em>(Optional)</em>
  8623. <p>Fake configures a store with static key/value pairs</p>
  8624. </td>
  8625. </tr>
  8626. <tr>
  8627. <td>
  8628. <code>senhasegura</code></br>
  8629. <em>
  8630. <a href="#external-secrets.io/v1.SenhaseguraProvider">
  8631. SenhaseguraProvider
  8632. </a>
  8633. </em>
  8634. </td>
  8635. <td>
  8636. <em>(Optional)</em>
  8637. <p>Senhasegura configures this store to sync secrets using senhasegura provider</p>
  8638. </td>
  8639. </tr>
  8640. <tr>
  8641. <td>
  8642. <code>scaleway</code></br>
  8643. <em>
  8644. <a href="#external-secrets.io/v1.ScalewayProvider">
  8645. ScalewayProvider
  8646. </a>
  8647. </em>
  8648. </td>
  8649. <td>
  8650. <em>(Optional)</em>
  8651. <p>Scaleway</p>
  8652. </td>
  8653. </tr>
  8654. <tr>
  8655. <td>
  8656. <code>doppler</code></br>
  8657. <em>
  8658. <a href="#external-secrets.io/v1.DopplerProvider">
  8659. DopplerProvider
  8660. </a>
  8661. </em>
  8662. </td>
  8663. <td>
  8664. <em>(Optional)</em>
  8665. <p>Doppler configures this store to sync secrets using the Doppler provider</p>
  8666. </td>
  8667. </tr>
  8668. <tr>
  8669. <td>
  8670. <code>previder</code></br>
  8671. <em>
  8672. <a href="#external-secrets.io/v1.PreviderProvider">
  8673. PreviderProvider
  8674. </a>
  8675. </em>
  8676. </td>
  8677. <td>
  8678. <em>(Optional)</em>
  8679. <p>Previder configures this store to sync secrets using the Previder provider</p>
  8680. </td>
  8681. </tr>
  8682. <tr>
  8683. <td>
  8684. <code>onboardbase</code></br>
  8685. <em>
  8686. <a href="#external-secrets.io/v1.OnboardbaseProvider">
  8687. OnboardbaseProvider
  8688. </a>
  8689. </em>
  8690. </td>
  8691. <td>
  8692. <em>(Optional)</em>
  8693. <p>Onboardbase configures this store to sync secrets using the Onboardbase provider</p>
  8694. </td>
  8695. </tr>
  8696. <tr>
  8697. <td>
  8698. <code>keepersecurity</code></br>
  8699. <em>
  8700. <a href="#external-secrets.io/v1.KeeperSecurityProvider">
  8701. KeeperSecurityProvider
  8702. </a>
  8703. </em>
  8704. </td>
  8705. <td>
  8706. <em>(Optional)</em>
  8707. <p>KeeperSecurity configures this store to sync secrets using the KeeperSecurity provider</p>
  8708. </td>
  8709. </tr>
  8710. <tr>
  8711. <td>
  8712. <code>conjur</code></br>
  8713. <em>
  8714. <a href="#external-secrets.io/v1.ConjurProvider">
  8715. ConjurProvider
  8716. </a>
  8717. </em>
  8718. </td>
  8719. <td>
  8720. <em>(Optional)</em>
  8721. <p>Conjur configures this store to sync secrets using conjur provider</p>
  8722. </td>
  8723. </tr>
  8724. <tr>
  8725. <td>
  8726. <code>delinea</code></br>
  8727. <em>
  8728. <a href="#external-secrets.io/v1.DelineaProvider">
  8729. DelineaProvider
  8730. </a>
  8731. </em>
  8732. </td>
  8733. <td>
  8734. <em>(Optional)</em>
  8735. <p>Delinea DevOps Secrets Vault
  8736. <a href="https://docs.delinea.com/online-help/products/devops-secrets-vault/current">https://docs.delinea.com/online-help/products/devops-secrets-vault/current</a></p>
  8737. </td>
  8738. </tr>
  8739. <tr>
  8740. <td>
  8741. <code>secretserver</code></br>
  8742. <em>
  8743. <a href="#external-secrets.io/v1.SecretServerProvider">
  8744. SecretServerProvider
  8745. </a>
  8746. </em>
  8747. </td>
  8748. <td>
  8749. <em>(Optional)</em>
  8750. <p>SecretServer configures this store to sync secrets using SecretServer provider
  8751. <a href="https://docs.delinea.com/online-help/secret-server/start.htm">https://docs.delinea.com/online-help/secret-server/start.htm</a></p>
  8752. </td>
  8753. </tr>
  8754. <tr>
  8755. <td>
  8756. <code>chef</code></br>
  8757. <em>
  8758. <a href="#external-secrets.io/v1.ChefProvider">
  8759. ChefProvider
  8760. </a>
  8761. </em>
  8762. </td>
  8763. <td>
  8764. <em>(Optional)</em>
  8765. <p>Chef configures this store to sync secrets with chef server</p>
  8766. </td>
  8767. </tr>
  8768. <tr>
  8769. <td>
  8770. <code>pulumi</code></br>
  8771. <em>
  8772. <a href="#external-secrets.io/v1.PulumiProvider">
  8773. PulumiProvider
  8774. </a>
  8775. </em>
  8776. </td>
  8777. <td>
  8778. <em>(Optional)</em>
  8779. <p>Pulumi configures this store to sync secrets using the Pulumi provider</p>
  8780. </td>
  8781. </tr>
  8782. <tr>
  8783. <td>
  8784. <code>fortanix</code></br>
  8785. <em>
  8786. <a href="#external-secrets.io/v1.FortanixProvider">
  8787. FortanixProvider
  8788. </a>
  8789. </em>
  8790. </td>
  8791. <td>
  8792. <em>(Optional)</em>
  8793. <p>Fortanix configures this store to sync secrets using the Fortanix provider</p>
  8794. </td>
  8795. </tr>
  8796. <tr>
  8797. <td>
  8798. <code>passworddepot</code></br>
  8799. <em>
  8800. <a href="#external-secrets.io/v1.PasswordDepotProvider">
  8801. PasswordDepotProvider
  8802. </a>
  8803. </em>
  8804. </td>
  8805. <td>
  8806. <em>(Optional)</em>
  8807. </td>
  8808. </tr>
  8809. <tr>
  8810. <td>
  8811. <code>passbolt</code></br>
  8812. <em>
  8813. <a href="#external-secrets.io/v1.PassboltProvider">
  8814. PassboltProvider
  8815. </a>
  8816. </em>
  8817. </td>
  8818. <td>
  8819. <em>(Optional)</em>
  8820. </td>
  8821. </tr>
  8822. <tr>
  8823. <td>
  8824. <code>device42</code></br>
  8825. <em>
  8826. <a href="#external-secrets.io/v1.Device42Provider">
  8827. Device42Provider
  8828. </a>
  8829. </em>
  8830. </td>
  8831. <td>
  8832. <em>(Optional)</em>
  8833. <p>Device42 configures this store to sync secrets using the Device42 provider</p>
  8834. </td>
  8835. </tr>
  8836. <tr>
  8837. <td>
  8838. <code>infisical</code></br>
  8839. <em>
  8840. <a href="#external-secrets.io/v1.InfisicalProvider">
  8841. InfisicalProvider
  8842. </a>
  8843. </em>
  8844. </td>
  8845. <td>
  8846. <em>(Optional)</em>
  8847. <p>Infisical configures this store to sync secrets using the Infisical provider</p>
  8848. </td>
  8849. </tr>
  8850. <tr>
  8851. <td>
  8852. <code>beyondtrust</code></br>
  8853. <em>
  8854. <a href="#external-secrets.io/v1.BeyondtrustProvider">
  8855. BeyondtrustProvider
  8856. </a>
  8857. </em>
  8858. </td>
  8859. <td>
  8860. <em>(Optional)</em>
  8861. <p>Beyondtrust configures this store to sync secrets using Password Safe provider.</p>
  8862. </td>
  8863. </tr>
  8864. <tr>
  8865. <td>
  8866. <code>cloudrusm</code></br>
  8867. <em>
  8868. <a href="#external-secrets.io/v1.CloudruSMProvider">
  8869. CloudruSMProvider
  8870. </a>
  8871. </em>
  8872. </td>
  8873. <td>
  8874. <em>(Optional)</em>
  8875. <p>CloudruSM configures this store to sync secrets using the Cloud.ru Secret Manager provider</p>
  8876. </td>
  8877. </tr>
  8878. </tbody>
  8879. </table>
  8880. <h3 id="external-secrets.io/v1.SecretStoreRef">SecretStoreRef
  8881. </h3>
  8882. <p>
  8883. (<em>Appears on:</em>
  8884. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>,
  8885. <a href="#external-secrets.io/v1.StoreGeneratorSourceRef">StoreGeneratorSourceRef</a>,
  8886. <a href="#external-secrets.io/v1.StoreSourceRef">StoreSourceRef</a>)
  8887. </p>
  8888. <p>
  8889. <p>SecretStoreRef defines which SecretStore to fetch the ExternalSecret data.</p>
  8890. </p>
  8891. <table>
  8892. <thead>
  8893. <tr>
  8894. <th>Field</th>
  8895. <th>Description</th>
  8896. </tr>
  8897. </thead>
  8898. <tbody>
  8899. <tr>
  8900. <td>
  8901. <code>name</code></br>
  8902. <em>
  8903. string
  8904. </em>
  8905. </td>
  8906. <td>
  8907. <p>Name of the SecretStore resource</p>
  8908. </td>
  8909. </tr>
  8910. <tr>
  8911. <td>
  8912. <code>kind</code></br>
  8913. <em>
  8914. string
  8915. </em>
  8916. </td>
  8917. <td>
  8918. <em>(Optional)</em>
  8919. <p>Kind of the SecretStore resource (SecretStore or ClusterSecretStore)
  8920. Defaults to <code>SecretStore</code></p>
  8921. </td>
  8922. </tr>
  8923. </tbody>
  8924. </table>
  8925. <h3 id="external-secrets.io/v1.SecretStoreRetrySettings">SecretStoreRetrySettings
  8926. </h3>
  8927. <p>
  8928. (<em>Appears on:</em>
  8929. <a href="#external-secrets.io/v1.SecretStoreSpec">SecretStoreSpec</a>)
  8930. </p>
  8931. <p>
  8932. </p>
  8933. <table>
  8934. <thead>
  8935. <tr>
  8936. <th>Field</th>
  8937. <th>Description</th>
  8938. </tr>
  8939. </thead>
  8940. <tbody>
  8941. <tr>
  8942. <td>
  8943. <code>maxRetries</code></br>
  8944. <em>
  8945. int32
  8946. </em>
  8947. </td>
  8948. <td>
  8949. </td>
  8950. </tr>
  8951. <tr>
  8952. <td>
  8953. <code>retryInterval</code></br>
  8954. <em>
  8955. string
  8956. </em>
  8957. </td>
  8958. <td>
  8959. </td>
  8960. </tr>
  8961. </tbody>
  8962. </table>
  8963. <h3 id="external-secrets.io/v1.SecretStoreSpec">SecretStoreSpec
  8964. </h3>
  8965. <p>
  8966. (<em>Appears on:</em>
  8967. <a href="#external-secrets.io/v1.ClusterSecretStore">ClusterSecretStore</a>,
  8968. <a href="#external-secrets.io/v1.SecretStore">SecretStore</a>)
  8969. </p>
  8970. <p>
  8971. <p>SecretStoreSpec defines the desired state of SecretStore.</p>
  8972. </p>
  8973. <table>
  8974. <thead>
  8975. <tr>
  8976. <th>Field</th>
  8977. <th>Description</th>
  8978. </tr>
  8979. </thead>
  8980. <tbody>
  8981. <tr>
  8982. <td>
  8983. <code>controller</code></br>
  8984. <em>
  8985. string
  8986. </em>
  8987. </td>
  8988. <td>
  8989. <em>(Optional)</em>
  8990. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  8991. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  8992. </td>
  8993. </tr>
  8994. <tr>
  8995. <td>
  8996. <code>provider</code></br>
  8997. <em>
  8998. <a href="#external-secrets.io/v1.SecretStoreProvider">
  8999. SecretStoreProvider
  9000. </a>
  9001. </em>
  9002. </td>
  9003. <td>
  9004. <p>Used to configure the provider. Only one provider may be set</p>
  9005. </td>
  9006. </tr>
  9007. <tr>
  9008. <td>
  9009. <code>retrySettings</code></br>
  9010. <em>
  9011. <a href="#external-secrets.io/v1.SecretStoreRetrySettings">
  9012. SecretStoreRetrySettings
  9013. </a>
  9014. </em>
  9015. </td>
  9016. <td>
  9017. <em>(Optional)</em>
  9018. <p>Used to configure http retries if failed</p>
  9019. </td>
  9020. </tr>
  9021. <tr>
  9022. <td>
  9023. <code>refreshInterval</code></br>
  9024. <em>
  9025. int
  9026. </em>
  9027. </td>
  9028. <td>
  9029. <em>(Optional)</em>
  9030. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  9031. </td>
  9032. </tr>
  9033. <tr>
  9034. <td>
  9035. <code>conditions</code></br>
  9036. <em>
  9037. <a href="#external-secrets.io/v1.ClusterSecretStoreCondition">
  9038. []ClusterSecretStoreCondition
  9039. </a>
  9040. </em>
  9041. </td>
  9042. <td>
  9043. <em>(Optional)</em>
  9044. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  9045. </td>
  9046. </tr>
  9047. </tbody>
  9048. </table>
  9049. <h3 id="external-secrets.io/v1.SecretStoreStatus">SecretStoreStatus
  9050. </h3>
  9051. <p>
  9052. (<em>Appears on:</em>
  9053. <a href="#external-secrets.io/v1.ClusterSecretStore">ClusterSecretStore</a>,
  9054. <a href="#external-secrets.io/v1.SecretStore">SecretStore</a>)
  9055. </p>
  9056. <p>
  9057. <p>SecretStoreStatus defines the observed state of the SecretStore.</p>
  9058. </p>
  9059. <table>
  9060. <thead>
  9061. <tr>
  9062. <th>Field</th>
  9063. <th>Description</th>
  9064. </tr>
  9065. </thead>
  9066. <tbody>
  9067. <tr>
  9068. <td>
  9069. <code>conditions</code></br>
  9070. <em>
  9071. <a href="#external-secrets.io/v1.SecretStoreStatusCondition">
  9072. []SecretStoreStatusCondition
  9073. </a>
  9074. </em>
  9075. </td>
  9076. <td>
  9077. <em>(Optional)</em>
  9078. </td>
  9079. </tr>
  9080. <tr>
  9081. <td>
  9082. <code>capabilities</code></br>
  9083. <em>
  9084. <a href="#external-secrets.io/v1.SecretStoreCapabilities">
  9085. SecretStoreCapabilities
  9086. </a>
  9087. </em>
  9088. </td>
  9089. <td>
  9090. <em>(Optional)</em>
  9091. </td>
  9092. </tr>
  9093. </tbody>
  9094. </table>
  9095. <h3 id="external-secrets.io/v1.SecretStoreStatusCondition">SecretStoreStatusCondition
  9096. </h3>
  9097. <p>
  9098. (<em>Appears on:</em>
  9099. <a href="#external-secrets.io/v1.SecretStoreStatus">SecretStoreStatus</a>)
  9100. </p>
  9101. <p>
  9102. </p>
  9103. <table>
  9104. <thead>
  9105. <tr>
  9106. <th>Field</th>
  9107. <th>Description</th>
  9108. </tr>
  9109. </thead>
  9110. <tbody>
  9111. <tr>
  9112. <td>
  9113. <code>type</code></br>
  9114. <em>
  9115. <a href="#external-secrets.io/v1.SecretStoreConditionType">
  9116. SecretStoreConditionType
  9117. </a>
  9118. </em>
  9119. </td>
  9120. <td>
  9121. </td>
  9122. </tr>
  9123. <tr>
  9124. <td>
  9125. <code>status</code></br>
  9126. <em>
  9127. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  9128. Kubernetes core/v1.ConditionStatus
  9129. </a>
  9130. </em>
  9131. </td>
  9132. <td>
  9133. </td>
  9134. </tr>
  9135. <tr>
  9136. <td>
  9137. <code>reason</code></br>
  9138. <em>
  9139. string
  9140. </em>
  9141. </td>
  9142. <td>
  9143. <em>(Optional)</em>
  9144. </td>
  9145. </tr>
  9146. <tr>
  9147. <td>
  9148. <code>message</code></br>
  9149. <em>
  9150. string
  9151. </em>
  9152. </td>
  9153. <td>
  9154. <em>(Optional)</em>
  9155. </td>
  9156. </tr>
  9157. <tr>
  9158. <td>
  9159. <code>lastTransitionTime</code></br>
  9160. <em>
  9161. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  9162. Kubernetes meta/v1.Time
  9163. </a>
  9164. </em>
  9165. </td>
  9166. <td>
  9167. <em>(Optional)</em>
  9168. </td>
  9169. </tr>
  9170. </tbody>
  9171. </table>
  9172. <h3 id="external-secrets.io/v1.SecretsClient">SecretsClient
  9173. </h3>
  9174. <p>
  9175. <p>SecretsClient provides access to secrets.</p>
  9176. </p>
  9177. <h3 id="external-secrets.io/v1.SecretsManager">SecretsManager
  9178. </h3>
  9179. <p>
  9180. (<em>Appears on:</em>
  9181. <a href="#external-secrets.io/v1.AWSProvider">AWSProvider</a>)
  9182. </p>
  9183. <p>
  9184. <p>SecretsManager defines how the provider behaves when interacting with AWS
  9185. SecretsManager. Some of these settings are only applicable to controlling how
  9186. secrets are deleted, and hence only apply to PushSecret (and only when
  9187. deletionPolicy is set to Delete).</p>
  9188. </p>
  9189. <table>
  9190. <thead>
  9191. <tr>
  9192. <th>Field</th>
  9193. <th>Description</th>
  9194. </tr>
  9195. </thead>
  9196. <tbody>
  9197. <tr>
  9198. <td>
  9199. <code>forceDeleteWithoutRecovery</code></br>
  9200. <em>
  9201. bool
  9202. </em>
  9203. </td>
  9204. <td>
  9205. <em>(Optional)</em>
  9206. <p>Specifies whether to delete the secret without any recovery window. You
  9207. can&rsquo;t use both this parameter and RecoveryWindowInDays in the same call.
  9208. If you don&rsquo;t use either, then by default Secrets Manager uses a 30 day
  9209. recovery window.
  9210. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-ForceDeleteWithoutRecovery">https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-ForceDeleteWithoutRecovery</a></p>
  9211. </td>
  9212. </tr>
  9213. <tr>
  9214. <td>
  9215. <code>recoveryWindowInDays</code></br>
  9216. <em>
  9217. int64
  9218. </em>
  9219. </td>
  9220. <td>
  9221. <em>(Optional)</em>
  9222. <p>The number of days from 7 to 30 that Secrets Manager waits before
  9223. permanently deleting the secret. You can&rsquo;t use both this parameter and
  9224. ForceDeleteWithoutRecovery in the same call. If you don&rsquo;t use either,
  9225. then by default Secrets Manager uses a 30 day recovery window.
  9226. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-RecoveryWindowInDays">https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-RecoveryWindowInDays</a></p>
  9227. </td>
  9228. </tr>
  9229. </tbody>
  9230. </table>
  9231. <h3 id="external-secrets.io/v1.SenhaseguraAuth">SenhaseguraAuth
  9232. </h3>
  9233. <p>
  9234. (<em>Appears on:</em>
  9235. <a href="#external-secrets.io/v1.SenhaseguraProvider">SenhaseguraProvider</a>)
  9236. </p>
  9237. <p>
  9238. <p>SenhaseguraAuth tells the controller how to do auth in senhasegura.</p>
  9239. </p>
  9240. <table>
  9241. <thead>
  9242. <tr>
  9243. <th>Field</th>
  9244. <th>Description</th>
  9245. </tr>
  9246. </thead>
  9247. <tbody>
  9248. <tr>
  9249. <td>
  9250. <code>clientId</code></br>
  9251. <em>
  9252. string
  9253. </em>
  9254. </td>
  9255. <td>
  9256. </td>
  9257. </tr>
  9258. <tr>
  9259. <td>
  9260. <code>clientSecretSecretRef</code></br>
  9261. <em>
  9262. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9263. External Secrets meta/v1.SecretKeySelector
  9264. </a>
  9265. </em>
  9266. </td>
  9267. <td>
  9268. </td>
  9269. </tr>
  9270. </tbody>
  9271. </table>
  9272. <h3 id="external-secrets.io/v1.SenhaseguraModuleType">SenhaseguraModuleType
  9273. (<code>string</code> alias)</p></h3>
  9274. <p>
  9275. (<em>Appears on:</em>
  9276. <a href="#external-secrets.io/v1.SenhaseguraProvider">SenhaseguraProvider</a>)
  9277. </p>
  9278. <p>
  9279. <p>SenhaseguraModuleType enum defines senhasegura target module to fetch secrets</p>
  9280. </p>
  9281. <table>
  9282. <thead>
  9283. <tr>
  9284. <th>Value</th>
  9285. <th>Description</th>
  9286. </tr>
  9287. </thead>
  9288. <tbody><tr><td><p>&#34;DSM&#34;</p></td>
  9289. <td><pre><code> SenhaseguraModuleDSM is the senhasegura DevOps Secrets Management module
  9290. see: https://senhasegura.com/devops
  9291. </code></pre>
  9292. </td>
  9293. </tr></tbody>
  9294. </table>
  9295. <h3 id="external-secrets.io/v1.SenhaseguraProvider">SenhaseguraProvider
  9296. </h3>
  9297. <p>
  9298. (<em>Appears on:</em>
  9299. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  9300. </p>
  9301. <p>
  9302. <p>SenhaseguraProvider setup a store to sync secrets with senhasegura.</p>
  9303. </p>
  9304. <table>
  9305. <thead>
  9306. <tr>
  9307. <th>Field</th>
  9308. <th>Description</th>
  9309. </tr>
  9310. </thead>
  9311. <tbody>
  9312. <tr>
  9313. <td>
  9314. <code>url</code></br>
  9315. <em>
  9316. string
  9317. </em>
  9318. </td>
  9319. <td>
  9320. <p>URL of senhasegura</p>
  9321. </td>
  9322. </tr>
  9323. <tr>
  9324. <td>
  9325. <code>module</code></br>
  9326. <em>
  9327. <a href="#external-secrets.io/v1.SenhaseguraModuleType">
  9328. SenhaseguraModuleType
  9329. </a>
  9330. </em>
  9331. </td>
  9332. <td>
  9333. <p>Module defines which senhasegura module should be used to get secrets</p>
  9334. </td>
  9335. </tr>
  9336. <tr>
  9337. <td>
  9338. <code>auth</code></br>
  9339. <em>
  9340. <a href="#external-secrets.io/v1.SenhaseguraAuth">
  9341. SenhaseguraAuth
  9342. </a>
  9343. </em>
  9344. </td>
  9345. <td>
  9346. <p>Auth defines parameters to authenticate in senhasegura</p>
  9347. </td>
  9348. </tr>
  9349. <tr>
  9350. <td>
  9351. <code>ignoreSslCertificate</code></br>
  9352. <em>
  9353. bool
  9354. </em>
  9355. </td>
  9356. <td>
  9357. <p>IgnoreSslCertificate defines if SSL certificate must be ignored</p>
  9358. </td>
  9359. </tr>
  9360. </tbody>
  9361. </table>
  9362. <h3 id="external-secrets.io/v1.StoreGeneratorSourceRef">StoreGeneratorSourceRef
  9363. </h3>
  9364. <p>
  9365. (<em>Appears on:</em>
  9366. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  9367. </p>
  9368. <p>
  9369. <p>StoreGeneratorSourceRef allows you to override the source
  9370. from which the secret will be pulled from.
  9371. You can define at maximum one property.</p>
  9372. </p>
  9373. <table>
  9374. <thead>
  9375. <tr>
  9376. <th>Field</th>
  9377. <th>Description</th>
  9378. </tr>
  9379. </thead>
  9380. <tbody>
  9381. <tr>
  9382. <td>
  9383. <code>storeRef</code></br>
  9384. <em>
  9385. <a href="#external-secrets.io/v1.SecretStoreRef">
  9386. SecretStoreRef
  9387. </a>
  9388. </em>
  9389. </td>
  9390. <td>
  9391. <em>(Optional)</em>
  9392. </td>
  9393. </tr>
  9394. <tr>
  9395. <td>
  9396. <code>generatorRef</code></br>
  9397. <em>
  9398. <a href="#external-secrets.io/v1.GeneratorRef">
  9399. GeneratorRef
  9400. </a>
  9401. </em>
  9402. </td>
  9403. <td>
  9404. <em>(Optional)</em>
  9405. <p>GeneratorRef points to a generator custom resource.</p>
  9406. </td>
  9407. </tr>
  9408. </tbody>
  9409. </table>
  9410. <h3 id="external-secrets.io/v1.StoreSourceRef">StoreSourceRef
  9411. </h3>
  9412. <p>
  9413. (<em>Appears on:</em>
  9414. <a href="#external-secrets.io/v1.ExternalSecretData">ExternalSecretData</a>)
  9415. </p>
  9416. <p>
  9417. <p>StoreSourceRef allows you to override the SecretStore source
  9418. from which the secret will be pulled from.
  9419. You can define at maximum one property.</p>
  9420. </p>
  9421. <table>
  9422. <thead>
  9423. <tr>
  9424. <th>Field</th>
  9425. <th>Description</th>
  9426. </tr>
  9427. </thead>
  9428. <tbody>
  9429. <tr>
  9430. <td>
  9431. <code>storeRef</code></br>
  9432. <em>
  9433. <a href="#external-secrets.io/v1.SecretStoreRef">
  9434. SecretStoreRef
  9435. </a>
  9436. </em>
  9437. </td>
  9438. <td>
  9439. <em>(Optional)</em>
  9440. </td>
  9441. </tr>
  9442. <tr>
  9443. <td>
  9444. <code>generatorRef</code></br>
  9445. <em>
  9446. <a href="#external-secrets.io/v1.GeneratorRef">
  9447. GeneratorRef
  9448. </a>
  9449. </em>
  9450. </td>
  9451. <td>
  9452. <p>GeneratorRef points to a generator custom resource.</p>
  9453. <p>Deprecated: The generatorRef is not implemented in .data[].
  9454. this will be removed with v1.</p>
  9455. </td>
  9456. </tr>
  9457. </tbody>
  9458. </table>
  9459. <h3 id="external-secrets.io/v1.Tag">Tag
  9460. </h3>
  9461. <p>
  9462. </p>
  9463. <table>
  9464. <thead>
  9465. <tr>
  9466. <th>Field</th>
  9467. <th>Description</th>
  9468. </tr>
  9469. </thead>
  9470. <tbody>
  9471. <tr>
  9472. <td>
  9473. <code>key</code></br>
  9474. <em>
  9475. string
  9476. </em>
  9477. </td>
  9478. <td>
  9479. </td>
  9480. </tr>
  9481. <tr>
  9482. <td>
  9483. <code>value</code></br>
  9484. <em>
  9485. string
  9486. </em>
  9487. </td>
  9488. <td>
  9489. </td>
  9490. </tr>
  9491. </tbody>
  9492. </table>
  9493. <h3 id="external-secrets.io/v1.TemplateEngineVersion">TemplateEngineVersion
  9494. (<code>string</code> alias)</p></h3>
  9495. <p>
  9496. (<em>Appears on:</em>
  9497. <a href="#external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  9498. </p>
  9499. <p>
  9500. </p>
  9501. <table>
  9502. <thead>
  9503. <tr>
  9504. <th>Value</th>
  9505. <th>Description</th>
  9506. </tr>
  9507. </thead>
  9508. <tbody><tr><td><p>&#34;v2&#34;</p></td>
  9509. <td></td>
  9510. </tr></tbody>
  9511. </table>
  9512. <h3 id="external-secrets.io/v1.TemplateFrom">TemplateFrom
  9513. </h3>
  9514. <p>
  9515. (<em>Appears on:</em>
  9516. <a href="#external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  9517. </p>
  9518. <p>
  9519. </p>
  9520. <table>
  9521. <thead>
  9522. <tr>
  9523. <th>Field</th>
  9524. <th>Description</th>
  9525. </tr>
  9526. </thead>
  9527. <tbody>
  9528. <tr>
  9529. <td>
  9530. <code>configMap</code></br>
  9531. <em>
  9532. <a href="#external-secrets.io/v1.TemplateRef">
  9533. TemplateRef
  9534. </a>
  9535. </em>
  9536. </td>
  9537. <td>
  9538. </td>
  9539. </tr>
  9540. <tr>
  9541. <td>
  9542. <code>secret</code></br>
  9543. <em>
  9544. <a href="#external-secrets.io/v1.TemplateRef">
  9545. TemplateRef
  9546. </a>
  9547. </em>
  9548. </td>
  9549. <td>
  9550. </td>
  9551. </tr>
  9552. <tr>
  9553. <td>
  9554. <code>target</code></br>
  9555. <em>
  9556. <a href="#external-secrets.io/v1.TemplateTarget">
  9557. TemplateTarget
  9558. </a>
  9559. </em>
  9560. </td>
  9561. <td>
  9562. <em>(Optional)</em>
  9563. </td>
  9564. </tr>
  9565. <tr>
  9566. <td>
  9567. <code>literal</code></br>
  9568. <em>
  9569. string
  9570. </em>
  9571. </td>
  9572. <td>
  9573. <em>(Optional)</em>
  9574. </td>
  9575. </tr>
  9576. </tbody>
  9577. </table>
  9578. <h3 id="external-secrets.io/v1.TemplateMergePolicy">TemplateMergePolicy
  9579. (<code>string</code> alias)</p></h3>
  9580. <p>
  9581. (<em>Appears on:</em>
  9582. <a href="#external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  9583. </p>
  9584. <p>
  9585. </p>
  9586. <table>
  9587. <thead>
  9588. <tr>
  9589. <th>Value</th>
  9590. <th>Description</th>
  9591. </tr>
  9592. </thead>
  9593. <tbody><tr><td><p>&#34;Merge&#34;</p></td>
  9594. <td></td>
  9595. </tr><tr><td><p>&#34;Replace&#34;</p></td>
  9596. <td></td>
  9597. </tr></tbody>
  9598. </table>
  9599. <h3 id="external-secrets.io/v1.TemplateRef">TemplateRef
  9600. </h3>
  9601. <p>
  9602. (<em>Appears on:</em>
  9603. <a href="#external-secrets.io/v1.TemplateFrom">TemplateFrom</a>)
  9604. </p>
  9605. <p>
  9606. </p>
  9607. <table>
  9608. <thead>
  9609. <tr>
  9610. <th>Field</th>
  9611. <th>Description</th>
  9612. </tr>
  9613. </thead>
  9614. <tbody>
  9615. <tr>
  9616. <td>
  9617. <code>name</code></br>
  9618. <em>
  9619. string
  9620. </em>
  9621. </td>
  9622. <td>
  9623. <p>The name of the ConfigMap/Secret resource</p>
  9624. </td>
  9625. </tr>
  9626. <tr>
  9627. <td>
  9628. <code>items</code></br>
  9629. <em>
  9630. <a href="#external-secrets.io/v1.TemplateRefItem">
  9631. []TemplateRefItem
  9632. </a>
  9633. </em>
  9634. </td>
  9635. <td>
  9636. <p>A list of keys in the ConfigMap/Secret to use as templates for Secret data</p>
  9637. </td>
  9638. </tr>
  9639. </tbody>
  9640. </table>
  9641. <h3 id="external-secrets.io/v1.TemplateRefItem">TemplateRefItem
  9642. </h3>
  9643. <p>
  9644. (<em>Appears on:</em>
  9645. <a href="#external-secrets.io/v1.TemplateRef">TemplateRef</a>)
  9646. </p>
  9647. <p>
  9648. </p>
  9649. <table>
  9650. <thead>
  9651. <tr>
  9652. <th>Field</th>
  9653. <th>Description</th>
  9654. </tr>
  9655. </thead>
  9656. <tbody>
  9657. <tr>
  9658. <td>
  9659. <code>key</code></br>
  9660. <em>
  9661. string
  9662. </em>
  9663. </td>
  9664. <td>
  9665. <p>A key in the ConfigMap/Secret</p>
  9666. </td>
  9667. </tr>
  9668. <tr>
  9669. <td>
  9670. <code>templateAs</code></br>
  9671. <em>
  9672. <a href="#external-secrets.io/v1.TemplateScope">
  9673. TemplateScope
  9674. </a>
  9675. </em>
  9676. </td>
  9677. <td>
  9678. </td>
  9679. </tr>
  9680. </tbody>
  9681. </table>
  9682. <h3 id="external-secrets.io/v1.TemplateScope">TemplateScope
  9683. (<code>string</code> alias)</p></h3>
  9684. <p>
  9685. (<em>Appears on:</em>
  9686. <a href="#external-secrets.io/v1.TemplateRefItem">TemplateRefItem</a>)
  9687. </p>
  9688. <p>
  9689. </p>
  9690. <table>
  9691. <thead>
  9692. <tr>
  9693. <th>Value</th>
  9694. <th>Description</th>
  9695. </tr>
  9696. </thead>
  9697. <tbody><tr><td><p>&#34;KeysAndValues&#34;</p></td>
  9698. <td></td>
  9699. </tr><tr><td><p>&#34;Values&#34;</p></td>
  9700. <td></td>
  9701. </tr></tbody>
  9702. </table>
  9703. <h3 id="external-secrets.io/v1.TemplateTarget">TemplateTarget
  9704. (<code>string</code> alias)</p></h3>
  9705. <p>
  9706. (<em>Appears on:</em>
  9707. <a href="#external-secrets.io/v1.TemplateFrom">TemplateFrom</a>)
  9708. </p>
  9709. <p>
  9710. </p>
  9711. <table>
  9712. <thead>
  9713. <tr>
  9714. <th>Value</th>
  9715. <th>Description</th>
  9716. </tr>
  9717. </thead>
  9718. <tbody><tr><td><p>&#34;Annotations&#34;</p></td>
  9719. <td></td>
  9720. </tr><tr><td><p>&#34;Data&#34;</p></td>
  9721. <td></td>
  9722. </tr><tr><td><p>&#34;Labels&#34;</p></td>
  9723. <td></td>
  9724. </tr></tbody>
  9725. </table>
  9726. <h3 id="external-secrets.io/v1.TokenAuth">TokenAuth
  9727. </h3>
  9728. <p>
  9729. (<em>Appears on:</em>
  9730. <a href="#external-secrets.io/v1.KubernetesAuth">KubernetesAuth</a>)
  9731. </p>
  9732. <p>
  9733. </p>
  9734. <table>
  9735. <thead>
  9736. <tr>
  9737. <th>Field</th>
  9738. <th>Description</th>
  9739. </tr>
  9740. </thead>
  9741. <tbody>
  9742. <tr>
  9743. <td>
  9744. <code>bearerToken</code></br>
  9745. <em>
  9746. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9747. External Secrets meta/v1.SecretKeySelector
  9748. </a>
  9749. </em>
  9750. </td>
  9751. <td>
  9752. </td>
  9753. </tr>
  9754. </tbody>
  9755. </table>
  9756. <h3 id="external-secrets.io/v1.UniversalAuthCredentials">UniversalAuthCredentials
  9757. </h3>
  9758. <p>
  9759. (<em>Appears on:</em>
  9760. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  9761. </p>
  9762. <p>
  9763. </p>
  9764. <table>
  9765. <thead>
  9766. <tr>
  9767. <th>Field</th>
  9768. <th>Description</th>
  9769. </tr>
  9770. </thead>
  9771. <tbody>
  9772. <tr>
  9773. <td>
  9774. <code>clientId</code></br>
  9775. <em>
  9776. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9777. External Secrets meta/v1.SecretKeySelector
  9778. </a>
  9779. </em>
  9780. </td>
  9781. <td>
  9782. </td>
  9783. </tr>
  9784. <tr>
  9785. <td>
  9786. <code>clientSecret</code></br>
  9787. <em>
  9788. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9789. External Secrets meta/v1.SecretKeySelector
  9790. </a>
  9791. </em>
  9792. </td>
  9793. <td>
  9794. </td>
  9795. </tr>
  9796. </tbody>
  9797. </table>
  9798. <h3 id="external-secrets.io/v1.ValidationResult">ValidationResult
  9799. (<code>byte</code> alias)</p></h3>
  9800. <p>
  9801. </p>
  9802. <table>
  9803. <thead>
  9804. <tr>
  9805. <th>Value</th>
  9806. <th>Description</th>
  9807. </tr>
  9808. </thead>
  9809. <tbody><tr><td><p>2</p></td>
  9810. <td><p>Error indicates that there is a misconfiguration.</p>
  9811. </td>
  9812. </tr><tr><td><p>0</p></td>
  9813. <td><p>Ready indicates that the client is configured correctly
  9814. and can be used.</p>
  9815. </td>
  9816. </tr><tr><td><p>1</p></td>
  9817. <td><p>Unknown indicates that the client can be used
  9818. but information is missing and it can not be validated.</p>
  9819. </td>
  9820. </tr></tbody>
  9821. </table>
  9822. <h3 id="external-secrets.io/v1.VaultAppRole">VaultAppRole
  9823. </h3>
  9824. <p>
  9825. (<em>Appears on:</em>
  9826. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  9827. </p>
  9828. <p>
  9829. <p>VaultAppRole authenticates with Vault using the App Role auth mechanism,
  9830. with the role and secret stored in a Kubernetes Secret resource.</p>
  9831. </p>
  9832. <table>
  9833. <thead>
  9834. <tr>
  9835. <th>Field</th>
  9836. <th>Description</th>
  9837. </tr>
  9838. </thead>
  9839. <tbody>
  9840. <tr>
  9841. <td>
  9842. <code>path</code></br>
  9843. <em>
  9844. string
  9845. </em>
  9846. </td>
  9847. <td>
  9848. <p>Path where the App Role authentication backend is mounted
  9849. in Vault, e.g: &ldquo;approle&rdquo;</p>
  9850. </td>
  9851. </tr>
  9852. <tr>
  9853. <td>
  9854. <code>roleId</code></br>
  9855. <em>
  9856. string
  9857. </em>
  9858. </td>
  9859. <td>
  9860. <em>(Optional)</em>
  9861. <p>RoleID configured in the App Role authentication backend when setting
  9862. up the authentication backend in Vault.</p>
  9863. </td>
  9864. </tr>
  9865. <tr>
  9866. <td>
  9867. <code>roleRef</code></br>
  9868. <em>
  9869. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9870. External Secrets meta/v1.SecretKeySelector
  9871. </a>
  9872. </em>
  9873. </td>
  9874. <td>
  9875. <em>(Optional)</em>
  9876. <p>Reference to a key in a Secret that contains the App Role ID used
  9877. to authenticate with Vault.
  9878. The <code>key</code> field must be specified and denotes which entry within the Secret
  9879. resource is used as the app role id.</p>
  9880. </td>
  9881. </tr>
  9882. <tr>
  9883. <td>
  9884. <code>secretRef</code></br>
  9885. <em>
  9886. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9887. External Secrets meta/v1.SecretKeySelector
  9888. </a>
  9889. </em>
  9890. </td>
  9891. <td>
  9892. <p>Reference to a key in a Secret that contains the App Role secret used
  9893. to authenticate with Vault.
  9894. The <code>key</code> field must be specified and denotes which entry within the Secret
  9895. resource is used as the app role secret.</p>
  9896. </td>
  9897. </tr>
  9898. </tbody>
  9899. </table>
  9900. <h3 id="external-secrets.io/v1.VaultAuth">VaultAuth
  9901. </h3>
  9902. <p>
  9903. (<em>Appears on:</em>
  9904. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  9905. </p>
  9906. <p>
  9907. <p>VaultAuth is the configuration used to authenticate with a Vault server.
  9908. Only one of <code>tokenSecretRef</code>, <code>appRole</code>, <code>kubernetes</code>, <code>ldap</code>, <code>userPass</code>, <code>jwt</code> or <code>cert</code>
  9909. can be specified. A namespace to authenticate against can optionally be specified.</p>
  9910. </p>
  9911. <table>
  9912. <thead>
  9913. <tr>
  9914. <th>Field</th>
  9915. <th>Description</th>
  9916. </tr>
  9917. </thead>
  9918. <tbody>
  9919. <tr>
  9920. <td>
  9921. <code>namespace</code></br>
  9922. <em>
  9923. string
  9924. </em>
  9925. </td>
  9926. <td>
  9927. <em>(Optional)</em>
  9928. <p>Name of the vault namespace to authenticate to. This can be different than the namespace your secret is in.
  9929. Namespaces is a set of features within Vault Enterprise that allows
  9930. Vault environments to support Secure Multi-tenancy. e.g: &ldquo;ns1&rdquo;.
  9931. More about namespaces can be found here <a href="https://www.vaultproject.io/docs/enterprise/namespaces">https://www.vaultproject.io/docs/enterprise/namespaces</a>
  9932. This will default to Vault.Namespace field if set, or empty otherwise</p>
  9933. </td>
  9934. </tr>
  9935. <tr>
  9936. <td>
  9937. <code>tokenSecretRef</code></br>
  9938. <em>
  9939. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9940. External Secrets meta/v1.SecretKeySelector
  9941. </a>
  9942. </em>
  9943. </td>
  9944. <td>
  9945. <em>(Optional)</em>
  9946. <p>TokenSecretRef authenticates with Vault by presenting a token.</p>
  9947. </td>
  9948. </tr>
  9949. <tr>
  9950. <td>
  9951. <code>appRole</code></br>
  9952. <em>
  9953. <a href="#external-secrets.io/v1.VaultAppRole">
  9954. VaultAppRole
  9955. </a>
  9956. </em>
  9957. </td>
  9958. <td>
  9959. <em>(Optional)</em>
  9960. <p>AppRole authenticates with Vault using the App Role auth mechanism,
  9961. with the role and secret stored in a Kubernetes Secret resource.</p>
  9962. </td>
  9963. </tr>
  9964. <tr>
  9965. <td>
  9966. <code>kubernetes</code></br>
  9967. <em>
  9968. <a href="#external-secrets.io/v1.VaultKubernetesAuth">
  9969. VaultKubernetesAuth
  9970. </a>
  9971. </em>
  9972. </td>
  9973. <td>
  9974. <em>(Optional)</em>
  9975. <p>Kubernetes authenticates with Vault by passing the ServiceAccount
  9976. token stored in the named Secret resource to the Vault server.</p>
  9977. </td>
  9978. </tr>
  9979. <tr>
  9980. <td>
  9981. <code>ldap</code></br>
  9982. <em>
  9983. <a href="#external-secrets.io/v1.VaultLdapAuth">
  9984. VaultLdapAuth
  9985. </a>
  9986. </em>
  9987. </td>
  9988. <td>
  9989. <em>(Optional)</em>
  9990. <p>Ldap authenticates with Vault by passing username/password pair using
  9991. the LDAP authentication method</p>
  9992. </td>
  9993. </tr>
  9994. <tr>
  9995. <td>
  9996. <code>jwt</code></br>
  9997. <em>
  9998. <a href="#external-secrets.io/v1.VaultJwtAuth">
  9999. VaultJwtAuth
  10000. </a>
  10001. </em>
  10002. </td>
  10003. <td>
  10004. <em>(Optional)</em>
  10005. <p>Jwt authenticates with Vault by passing role and JWT token using the
  10006. JWT/OIDC authentication method</p>
  10007. </td>
  10008. </tr>
  10009. <tr>
  10010. <td>
  10011. <code>cert</code></br>
  10012. <em>
  10013. <a href="#external-secrets.io/v1.VaultCertAuth">
  10014. VaultCertAuth
  10015. </a>
  10016. </em>
  10017. </td>
  10018. <td>
  10019. <em>(Optional)</em>
  10020. <p>Cert authenticates with TLS Certificates by passing client certificate, private key and ca certificate
  10021. Cert authentication method</p>
  10022. </td>
  10023. </tr>
  10024. <tr>
  10025. <td>
  10026. <code>iam</code></br>
  10027. <em>
  10028. <a href="#external-secrets.io/v1.VaultIamAuth">
  10029. VaultIamAuth
  10030. </a>
  10031. </em>
  10032. </td>
  10033. <td>
  10034. <em>(Optional)</em>
  10035. <p>Iam authenticates with vault by passing a special AWS request signed with AWS IAM credentials
  10036. AWS IAM authentication method</p>
  10037. </td>
  10038. </tr>
  10039. <tr>
  10040. <td>
  10041. <code>userPass</code></br>
  10042. <em>
  10043. <a href="#external-secrets.io/v1.VaultUserPassAuth">
  10044. VaultUserPassAuth
  10045. </a>
  10046. </em>
  10047. </td>
  10048. <td>
  10049. <em>(Optional)</em>
  10050. <p>UserPass authenticates with Vault by passing username/password pair</p>
  10051. </td>
  10052. </tr>
  10053. </tbody>
  10054. </table>
  10055. <h3 id="external-secrets.io/v1.VaultAwsAuth">VaultAwsAuth
  10056. </h3>
  10057. <p>
  10058. <p>VaultAwsAuth tells the controller how to do authentication with aws.
  10059. Only one of secretRef or jwt can be specified.
  10060. if none is specified the controller will try to load credentials from its own service account assuming it is IRSA enabled.</p>
  10061. </p>
  10062. <table>
  10063. <thead>
  10064. <tr>
  10065. <th>Field</th>
  10066. <th>Description</th>
  10067. </tr>
  10068. </thead>
  10069. <tbody>
  10070. <tr>
  10071. <td>
  10072. <code>secretRef</code></br>
  10073. <em>
  10074. <a href="#external-secrets.io/v1.VaultAwsAuthSecretRef">
  10075. VaultAwsAuthSecretRef
  10076. </a>
  10077. </em>
  10078. </td>
  10079. <td>
  10080. <em>(Optional)</em>
  10081. </td>
  10082. </tr>
  10083. <tr>
  10084. <td>
  10085. <code>jwt</code></br>
  10086. <em>
  10087. <a href="#external-secrets.io/v1.VaultAwsJWTAuth">
  10088. VaultAwsJWTAuth
  10089. </a>
  10090. </em>
  10091. </td>
  10092. <td>
  10093. <em>(Optional)</em>
  10094. </td>
  10095. </tr>
  10096. </tbody>
  10097. </table>
  10098. <h3 id="external-secrets.io/v1.VaultAwsAuthSecretRef">VaultAwsAuthSecretRef
  10099. </h3>
  10100. <p>
  10101. (<em>Appears on:</em>
  10102. <a href="#external-secrets.io/v1.VaultAwsAuth">VaultAwsAuth</a>,
  10103. <a href="#external-secrets.io/v1.VaultIamAuth">VaultIamAuth</a>)
  10104. </p>
  10105. <p>
  10106. <p>VaultAWSAuthSecretRef holds secret references for AWS credentials
  10107. both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.</p>
  10108. </p>
  10109. <table>
  10110. <thead>
  10111. <tr>
  10112. <th>Field</th>
  10113. <th>Description</th>
  10114. </tr>
  10115. </thead>
  10116. <tbody>
  10117. <tr>
  10118. <td>
  10119. <code>accessKeyIDSecretRef</code></br>
  10120. <em>
  10121. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10122. External Secrets meta/v1.SecretKeySelector
  10123. </a>
  10124. </em>
  10125. </td>
  10126. <td>
  10127. <em>(Optional)</em>
  10128. <p>The AccessKeyID is used for authentication</p>
  10129. </td>
  10130. </tr>
  10131. <tr>
  10132. <td>
  10133. <code>secretAccessKeySecretRef</code></br>
  10134. <em>
  10135. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10136. External Secrets meta/v1.SecretKeySelector
  10137. </a>
  10138. </em>
  10139. </td>
  10140. <td>
  10141. <em>(Optional)</em>
  10142. <p>The SecretAccessKey is used for authentication</p>
  10143. </td>
  10144. </tr>
  10145. <tr>
  10146. <td>
  10147. <code>sessionTokenSecretRef</code></br>
  10148. <em>
  10149. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10150. External Secrets meta/v1.SecretKeySelector
  10151. </a>
  10152. </em>
  10153. </td>
  10154. <td>
  10155. <em>(Optional)</em>
  10156. <p>The SessionToken used for authentication
  10157. This must be defined if AccessKeyID and SecretAccessKey are temporary credentials
  10158. see: <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html">https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html</a></p>
  10159. </td>
  10160. </tr>
  10161. </tbody>
  10162. </table>
  10163. <h3 id="external-secrets.io/v1.VaultAwsJWTAuth">VaultAwsJWTAuth
  10164. </h3>
  10165. <p>
  10166. (<em>Appears on:</em>
  10167. <a href="#external-secrets.io/v1.VaultAwsAuth">VaultAwsAuth</a>,
  10168. <a href="#external-secrets.io/v1.VaultIamAuth">VaultIamAuth</a>)
  10169. </p>
  10170. <p>
  10171. <p>VaultAwsJWTAuth Authenticate against AWS using service account tokens.</p>
  10172. </p>
  10173. <table>
  10174. <thead>
  10175. <tr>
  10176. <th>Field</th>
  10177. <th>Description</th>
  10178. </tr>
  10179. </thead>
  10180. <tbody>
  10181. <tr>
  10182. <td>
  10183. <code>serviceAccountRef</code></br>
  10184. <em>
  10185. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  10186. External Secrets meta/v1.ServiceAccountSelector
  10187. </a>
  10188. </em>
  10189. </td>
  10190. <td>
  10191. <em>(Optional)</em>
  10192. </td>
  10193. </tr>
  10194. </tbody>
  10195. </table>
  10196. <h3 id="external-secrets.io/v1.VaultCertAuth">VaultCertAuth
  10197. </h3>
  10198. <p>
  10199. (<em>Appears on:</em>
  10200. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  10201. </p>
  10202. <p>
  10203. <p>VaultCertAuth authenticates with Vault using the JWT/OIDC authentication
  10204. method, with the role name and token stored in a Kubernetes Secret resource.</p>
  10205. </p>
  10206. <table>
  10207. <thead>
  10208. <tr>
  10209. <th>Field</th>
  10210. <th>Description</th>
  10211. </tr>
  10212. </thead>
  10213. <tbody>
  10214. <tr>
  10215. <td>
  10216. <code>clientCert</code></br>
  10217. <em>
  10218. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10219. External Secrets meta/v1.SecretKeySelector
  10220. </a>
  10221. </em>
  10222. </td>
  10223. <td>
  10224. <em>(Optional)</em>
  10225. <p>ClientCert is a certificate to authenticate using the Cert Vault
  10226. authentication method</p>
  10227. </td>
  10228. </tr>
  10229. <tr>
  10230. <td>
  10231. <code>secretRef</code></br>
  10232. <em>
  10233. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10234. External Secrets meta/v1.SecretKeySelector
  10235. </a>
  10236. </em>
  10237. </td>
  10238. <td>
  10239. <em>(Optional)</em>
  10240. <p>SecretRef to a key in a Secret resource containing client private key to
  10241. authenticate with Vault using the Cert authentication method</p>
  10242. </td>
  10243. </tr>
  10244. </tbody>
  10245. </table>
  10246. <h3 id="external-secrets.io/v1.VaultClientTLS">VaultClientTLS
  10247. </h3>
  10248. <p>
  10249. (<em>Appears on:</em>
  10250. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  10251. </p>
  10252. <p>
  10253. <p>VaultClientTLS is the configuration used for client side related TLS communication,
  10254. when the Vault server requires mutual authentication.</p>
  10255. </p>
  10256. <table>
  10257. <thead>
  10258. <tr>
  10259. <th>Field</th>
  10260. <th>Description</th>
  10261. </tr>
  10262. </thead>
  10263. <tbody>
  10264. <tr>
  10265. <td>
  10266. <code>certSecretRef</code></br>
  10267. <em>
  10268. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10269. External Secrets meta/v1.SecretKeySelector
  10270. </a>
  10271. </em>
  10272. </td>
  10273. <td>
  10274. <em>(Optional)</em>
  10275. <p>CertSecretRef is a certificate added to the transport layer
  10276. when communicating with the Vault server.
  10277. If no key for the Secret is specified, external-secret will default to &lsquo;tls.crt&rsquo;.</p>
  10278. </td>
  10279. </tr>
  10280. <tr>
  10281. <td>
  10282. <code>keySecretRef</code></br>
  10283. <em>
  10284. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10285. External Secrets meta/v1.SecretKeySelector
  10286. </a>
  10287. </em>
  10288. </td>
  10289. <td>
  10290. <em>(Optional)</em>
  10291. <p>KeySecretRef to a key in a Secret resource containing client private key
  10292. added to the transport layer when communicating with the Vault server.
  10293. If no key for the Secret is specified, external-secret will default to &lsquo;tls.key&rsquo;.</p>
  10294. </td>
  10295. </tr>
  10296. </tbody>
  10297. </table>
  10298. <h3 id="external-secrets.io/v1.VaultIamAuth">VaultIamAuth
  10299. </h3>
  10300. <p>
  10301. (<em>Appears on:</em>
  10302. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  10303. </p>
  10304. <p>
  10305. <p>VaultIamAuth authenticates with Vault using the Vault&rsquo;s AWS IAM authentication method. Refer: <a href="https://developer.hashicorp.com/vault/docs/auth/aws">https://developer.hashicorp.com/vault/docs/auth/aws</a></p>
  10306. </p>
  10307. <table>
  10308. <thead>
  10309. <tr>
  10310. <th>Field</th>
  10311. <th>Description</th>
  10312. </tr>
  10313. </thead>
  10314. <tbody>
  10315. <tr>
  10316. <td>
  10317. <code>path</code></br>
  10318. <em>
  10319. string
  10320. </em>
  10321. </td>
  10322. <td>
  10323. <em>(Optional)</em>
  10324. <p>Path where the AWS auth method is enabled in Vault, e.g: &ldquo;aws&rdquo;</p>
  10325. </td>
  10326. </tr>
  10327. <tr>
  10328. <td>
  10329. <code>region</code></br>
  10330. <em>
  10331. string
  10332. </em>
  10333. </td>
  10334. <td>
  10335. <em>(Optional)</em>
  10336. <p>AWS region</p>
  10337. </td>
  10338. </tr>
  10339. <tr>
  10340. <td>
  10341. <code>role</code></br>
  10342. <em>
  10343. string
  10344. </em>
  10345. </td>
  10346. <td>
  10347. <em>(Optional)</em>
  10348. <p>This is the AWS role to be assumed before talking to vault</p>
  10349. </td>
  10350. </tr>
  10351. <tr>
  10352. <td>
  10353. <code>vaultRole</code></br>
  10354. <em>
  10355. string
  10356. </em>
  10357. </td>
  10358. <td>
  10359. <p>Vault Role. In vault, a role describes an identity with a set of permissions, groups, or policies you want to attach a user of the secrets engine</p>
  10360. </td>
  10361. </tr>
  10362. <tr>
  10363. <td>
  10364. <code>externalID</code></br>
  10365. <em>
  10366. string
  10367. </em>
  10368. </td>
  10369. <td>
  10370. <p>AWS External ID set on assumed IAM roles</p>
  10371. </td>
  10372. </tr>
  10373. <tr>
  10374. <td>
  10375. <code>vaultAwsIamServerID</code></br>
  10376. <em>
  10377. string
  10378. </em>
  10379. </td>
  10380. <td>
  10381. <em>(Optional)</em>
  10382. <p>X-Vault-AWS-IAM-Server-ID is an additional header used by Vault IAM auth method to mitigate against different types of replay attacks. More details here: <a href="https://developer.hashicorp.com/vault/docs/auth/aws">https://developer.hashicorp.com/vault/docs/auth/aws</a></p>
  10383. </td>
  10384. </tr>
  10385. <tr>
  10386. <td>
  10387. <code>secretRef</code></br>
  10388. <em>
  10389. <a href="#external-secrets.io/v1.VaultAwsAuthSecretRef">
  10390. VaultAwsAuthSecretRef
  10391. </a>
  10392. </em>
  10393. </td>
  10394. <td>
  10395. <em>(Optional)</em>
  10396. <p>Specify credentials in a Secret object</p>
  10397. </td>
  10398. </tr>
  10399. <tr>
  10400. <td>
  10401. <code>jwt</code></br>
  10402. <em>
  10403. <a href="#external-secrets.io/v1.VaultAwsJWTAuth">
  10404. VaultAwsJWTAuth
  10405. </a>
  10406. </em>
  10407. </td>
  10408. <td>
  10409. <em>(Optional)</em>
  10410. <p>Specify a service account with IRSA enabled</p>
  10411. </td>
  10412. </tr>
  10413. </tbody>
  10414. </table>
  10415. <h3 id="external-secrets.io/v1.VaultJwtAuth">VaultJwtAuth
  10416. </h3>
  10417. <p>
  10418. (<em>Appears on:</em>
  10419. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  10420. </p>
  10421. <p>
  10422. <p>VaultJwtAuth authenticates with Vault using the JWT/OIDC authentication
  10423. method, with the role name and a token stored in a Kubernetes Secret resource or
  10424. a Kubernetes service account token retrieved via <code>TokenRequest</code>.</p>
  10425. </p>
  10426. <table>
  10427. <thead>
  10428. <tr>
  10429. <th>Field</th>
  10430. <th>Description</th>
  10431. </tr>
  10432. </thead>
  10433. <tbody>
  10434. <tr>
  10435. <td>
  10436. <code>path</code></br>
  10437. <em>
  10438. string
  10439. </em>
  10440. </td>
  10441. <td>
  10442. <p>Path where the JWT authentication backend is mounted
  10443. in Vault, e.g: &ldquo;jwt&rdquo;</p>
  10444. </td>
  10445. </tr>
  10446. <tr>
  10447. <td>
  10448. <code>role</code></br>
  10449. <em>
  10450. string
  10451. </em>
  10452. </td>
  10453. <td>
  10454. <em>(Optional)</em>
  10455. <p>Role is a JWT role to authenticate using the JWT/OIDC Vault
  10456. authentication method</p>
  10457. </td>
  10458. </tr>
  10459. <tr>
  10460. <td>
  10461. <code>secretRef</code></br>
  10462. <em>
  10463. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10464. External Secrets meta/v1.SecretKeySelector
  10465. </a>
  10466. </em>
  10467. </td>
  10468. <td>
  10469. <em>(Optional)</em>
  10470. <p>Optional SecretRef that refers to a key in a Secret resource containing JWT token to
  10471. authenticate with Vault using the JWT/OIDC authentication method.</p>
  10472. </td>
  10473. </tr>
  10474. <tr>
  10475. <td>
  10476. <code>kubernetesServiceAccountToken</code></br>
  10477. <em>
  10478. <a href="#external-secrets.io/v1.VaultKubernetesServiceAccountTokenAuth">
  10479. VaultKubernetesServiceAccountTokenAuth
  10480. </a>
  10481. </em>
  10482. </td>
  10483. <td>
  10484. <em>(Optional)</em>
  10485. <p>Optional ServiceAccountToken specifies the Kubernetes service account for which to request
  10486. a token for with the <code>TokenRequest</code> API.</p>
  10487. </td>
  10488. </tr>
  10489. </tbody>
  10490. </table>
  10491. <h3 id="external-secrets.io/v1.VaultKVStoreVersion">VaultKVStoreVersion
  10492. (<code>string</code> alias)</p></h3>
  10493. <p>
  10494. (<em>Appears on:</em>
  10495. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  10496. </p>
  10497. <p>
  10498. </p>
  10499. <table>
  10500. <thead>
  10501. <tr>
  10502. <th>Value</th>
  10503. <th>Description</th>
  10504. </tr>
  10505. </thead>
  10506. <tbody><tr><td><p>&#34;v1&#34;</p></td>
  10507. <td></td>
  10508. </tr><tr><td><p>&#34;v2&#34;</p></td>
  10509. <td></td>
  10510. </tr></tbody>
  10511. </table>
  10512. <h3 id="external-secrets.io/v1.VaultKubernetesAuth">VaultKubernetesAuth
  10513. </h3>
  10514. <p>
  10515. (<em>Appears on:</em>
  10516. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  10517. </p>
  10518. <p>
  10519. <p>Authenticate against Vault using a Kubernetes ServiceAccount token stored in
  10520. a Secret.</p>
  10521. </p>
  10522. <table>
  10523. <thead>
  10524. <tr>
  10525. <th>Field</th>
  10526. <th>Description</th>
  10527. </tr>
  10528. </thead>
  10529. <tbody>
  10530. <tr>
  10531. <td>
  10532. <code>mountPath</code></br>
  10533. <em>
  10534. string
  10535. </em>
  10536. </td>
  10537. <td>
  10538. <p>Path where the Kubernetes authentication backend is mounted in Vault, e.g:
  10539. &ldquo;kubernetes&rdquo;</p>
  10540. </td>
  10541. </tr>
  10542. <tr>
  10543. <td>
  10544. <code>serviceAccountRef</code></br>
  10545. <em>
  10546. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  10547. External Secrets meta/v1.ServiceAccountSelector
  10548. </a>
  10549. </em>
  10550. </td>
  10551. <td>
  10552. <em>(Optional)</em>
  10553. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  10554. If the service account is specified, the service account secret token JWT will be used
  10555. for authenticating with Vault. If the service account selector is not supplied,
  10556. the secretRef will be used instead.</p>
  10557. </td>
  10558. </tr>
  10559. <tr>
  10560. <td>
  10561. <code>secretRef</code></br>
  10562. <em>
  10563. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10564. External Secrets meta/v1.SecretKeySelector
  10565. </a>
  10566. </em>
  10567. </td>
  10568. <td>
  10569. <em>(Optional)</em>
  10570. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  10571. for authenticating with Vault. If a name is specified without a key,
  10572. <code>token</code> is the default. If one is not specified, the one bound to
  10573. the controller will be used.</p>
  10574. </td>
  10575. </tr>
  10576. <tr>
  10577. <td>
  10578. <code>role</code></br>
  10579. <em>
  10580. string
  10581. </em>
  10582. </td>
  10583. <td>
  10584. <p>A required field containing the Vault Role to assume. A Role binds a
  10585. Kubernetes ServiceAccount with a set of Vault policies.</p>
  10586. </td>
  10587. </tr>
  10588. </tbody>
  10589. </table>
  10590. <h3 id="external-secrets.io/v1.VaultKubernetesServiceAccountTokenAuth">VaultKubernetesServiceAccountTokenAuth
  10591. </h3>
  10592. <p>
  10593. (<em>Appears on:</em>
  10594. <a href="#external-secrets.io/v1.VaultJwtAuth">VaultJwtAuth</a>)
  10595. </p>
  10596. <p>
  10597. <p>VaultKubernetesServiceAccountTokenAuth authenticates with Vault using a temporary
  10598. Kubernetes service account token retrieved by the <code>TokenRequest</code> API.</p>
  10599. </p>
  10600. <table>
  10601. <thead>
  10602. <tr>
  10603. <th>Field</th>
  10604. <th>Description</th>
  10605. </tr>
  10606. </thead>
  10607. <tbody>
  10608. <tr>
  10609. <td>
  10610. <code>serviceAccountRef</code></br>
  10611. <em>
  10612. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  10613. External Secrets meta/v1.ServiceAccountSelector
  10614. </a>
  10615. </em>
  10616. </td>
  10617. <td>
  10618. <p>Service account field containing the name of a kubernetes ServiceAccount.</p>
  10619. </td>
  10620. </tr>
  10621. <tr>
  10622. <td>
  10623. <code>audiences</code></br>
  10624. <em>
  10625. []string
  10626. </em>
  10627. </td>
  10628. <td>
  10629. <em>(Optional)</em>
  10630. <p>Optional audiences field that will be used to request a temporary Kubernetes service
  10631. account token for the service account referenced by <code>serviceAccountRef</code>.
  10632. Defaults to a single audience <code>vault</code> it not specified.
  10633. Deprecated: use serviceAccountRef.Audiences instead</p>
  10634. </td>
  10635. </tr>
  10636. <tr>
  10637. <td>
  10638. <code>expirationSeconds</code></br>
  10639. <em>
  10640. int64
  10641. </em>
  10642. </td>
  10643. <td>
  10644. <em>(Optional)</em>
  10645. <p>Optional expiration time in seconds that will be used to request a temporary
  10646. Kubernetes service account token for the service account referenced by
  10647. <code>serviceAccountRef</code>.
  10648. Deprecated: this will be removed in the future.
  10649. Defaults to 10 minutes.</p>
  10650. </td>
  10651. </tr>
  10652. </tbody>
  10653. </table>
  10654. <h3 id="external-secrets.io/v1.VaultLdapAuth">VaultLdapAuth
  10655. </h3>
  10656. <p>
  10657. (<em>Appears on:</em>
  10658. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  10659. </p>
  10660. <p>
  10661. <p>VaultLdapAuth authenticates with Vault using the LDAP authentication method,
  10662. with the username and password stored in a Kubernetes Secret resource.</p>
  10663. </p>
  10664. <table>
  10665. <thead>
  10666. <tr>
  10667. <th>Field</th>
  10668. <th>Description</th>
  10669. </tr>
  10670. </thead>
  10671. <tbody>
  10672. <tr>
  10673. <td>
  10674. <code>path</code></br>
  10675. <em>
  10676. string
  10677. </em>
  10678. </td>
  10679. <td>
  10680. <p>Path where the LDAP authentication backend is mounted
  10681. in Vault, e.g: &ldquo;ldap&rdquo;</p>
  10682. </td>
  10683. </tr>
  10684. <tr>
  10685. <td>
  10686. <code>username</code></br>
  10687. <em>
  10688. string
  10689. </em>
  10690. </td>
  10691. <td>
  10692. <p>Username is an LDAP username used to authenticate using the LDAP Vault
  10693. authentication method</p>
  10694. </td>
  10695. </tr>
  10696. <tr>
  10697. <td>
  10698. <code>secretRef</code></br>
  10699. <em>
  10700. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10701. External Secrets meta/v1.SecretKeySelector
  10702. </a>
  10703. </em>
  10704. </td>
  10705. <td>
  10706. <em>(Optional)</em>
  10707. <p>SecretRef to a key in a Secret resource containing password for the LDAP
  10708. user used to authenticate with Vault using the LDAP authentication
  10709. method</p>
  10710. </td>
  10711. </tr>
  10712. </tbody>
  10713. </table>
  10714. <h3 id="external-secrets.io/v1.VaultProvider">VaultProvider
  10715. </h3>
  10716. <p>
  10717. (<em>Appears on:</em>
  10718. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  10719. </p>
  10720. <p>
  10721. <p>Configures an store to sync secrets using a HashiCorp Vault
  10722. KV backend.</p>
  10723. </p>
  10724. <table>
  10725. <thead>
  10726. <tr>
  10727. <th>Field</th>
  10728. <th>Description</th>
  10729. </tr>
  10730. </thead>
  10731. <tbody>
  10732. <tr>
  10733. <td>
  10734. <code>auth</code></br>
  10735. <em>
  10736. <a href="#external-secrets.io/v1.VaultAuth">
  10737. VaultAuth
  10738. </a>
  10739. </em>
  10740. </td>
  10741. <td>
  10742. <p>Auth configures how secret-manager authenticates with the Vault server.</p>
  10743. </td>
  10744. </tr>
  10745. <tr>
  10746. <td>
  10747. <code>server</code></br>
  10748. <em>
  10749. string
  10750. </em>
  10751. </td>
  10752. <td>
  10753. <p>Server is the connection address for the Vault server, e.g: &ldquo;<a href="https://vault.example.com:8200&quot;">https://vault.example.com:8200&rdquo;</a>.</p>
  10754. </td>
  10755. </tr>
  10756. <tr>
  10757. <td>
  10758. <code>path</code></br>
  10759. <em>
  10760. string
  10761. </em>
  10762. </td>
  10763. <td>
  10764. <em>(Optional)</em>
  10765. <p>Path is the mount path of the Vault KV backend endpoint, e.g:
  10766. &ldquo;secret&rdquo;. The v2 KV secret engine version specific &ldquo;/data&rdquo; path suffix
  10767. for fetching secrets from Vault is optional and will be appended
  10768. if not present in specified path.</p>
  10769. </td>
  10770. </tr>
  10771. <tr>
  10772. <td>
  10773. <code>version</code></br>
  10774. <em>
  10775. <a href="#external-secrets.io/v1.VaultKVStoreVersion">
  10776. VaultKVStoreVersion
  10777. </a>
  10778. </em>
  10779. </td>
  10780. <td>
  10781. <p>Version is the Vault KV secret engine version. This can be either &ldquo;v1&rdquo; or
  10782. &ldquo;v2&rdquo;. Version defaults to &ldquo;v2&rdquo;.</p>
  10783. </td>
  10784. </tr>
  10785. <tr>
  10786. <td>
  10787. <code>namespace</code></br>
  10788. <em>
  10789. string
  10790. </em>
  10791. </td>
  10792. <td>
  10793. <em>(Optional)</em>
  10794. <p>Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows
  10795. Vault environments to support Secure Multi-tenancy. e.g: &ldquo;ns1&rdquo;.
  10796. More about namespaces can be found here <a href="https://www.vaultproject.io/docs/enterprise/namespaces">https://www.vaultproject.io/docs/enterprise/namespaces</a></p>
  10797. </td>
  10798. </tr>
  10799. <tr>
  10800. <td>
  10801. <code>caBundle</code></br>
  10802. <em>
  10803. []byte
  10804. </em>
  10805. </td>
  10806. <td>
  10807. <em>(Optional)</em>
  10808. <p>PEM encoded CA bundle used to validate Vault server certificate. Only used
  10809. if the Server URL is using HTTPS protocol. This parameter is ignored for
  10810. plain HTTP protocol connection. If not set the system root certificates
  10811. are used to validate the TLS connection.</p>
  10812. </td>
  10813. </tr>
  10814. <tr>
  10815. <td>
  10816. <code>tls</code></br>
  10817. <em>
  10818. <a href="#external-secrets.io/v1.VaultClientTLS">
  10819. VaultClientTLS
  10820. </a>
  10821. </em>
  10822. </td>
  10823. <td>
  10824. <em>(Optional)</em>
  10825. <p>The configuration used for client side related TLS communication, when the Vault server
  10826. requires mutual authentication. Only used if the Server URL is using HTTPS protocol.
  10827. This parameter is ignored for plain HTTP protocol connection.
  10828. It&rsquo;s worth noting this configuration is different from the &ldquo;TLS certificates auth method&rdquo;,
  10829. which is available under the <code>auth.cert</code> section.</p>
  10830. </td>
  10831. </tr>
  10832. <tr>
  10833. <td>
  10834. <code>caProvider</code></br>
  10835. <em>
  10836. <a href="#external-secrets.io/v1.CAProvider">
  10837. CAProvider
  10838. </a>
  10839. </em>
  10840. </td>
  10841. <td>
  10842. <em>(Optional)</em>
  10843. <p>The provider for the CA bundle to use to validate Vault server certificate.</p>
  10844. </td>
  10845. </tr>
  10846. <tr>
  10847. <td>
  10848. <code>readYourWrites</code></br>
  10849. <em>
  10850. bool
  10851. </em>
  10852. </td>
  10853. <td>
  10854. <em>(Optional)</em>
  10855. <p>ReadYourWrites ensures isolated read-after-write semantics by
  10856. providing discovered cluster replication states in each request.
  10857. More information about eventual consistency in Vault can be found here
  10858. <a href="https://www.vaultproject.io/docs/enterprise/consistency">https://www.vaultproject.io/docs/enterprise/consistency</a></p>
  10859. </td>
  10860. </tr>
  10861. <tr>
  10862. <td>
  10863. <code>forwardInconsistent</code></br>
  10864. <em>
  10865. bool
  10866. </em>
  10867. </td>
  10868. <td>
  10869. <em>(Optional)</em>
  10870. <p>ForwardInconsistent tells Vault to forward read-after-write requests to the Vault
  10871. leader instead of simply retrying within a loop. This can increase performance if
  10872. the option is enabled serverside.
  10873. <a href="https://www.vaultproject.io/docs/configuration/replication#allow_forwarding_via_header">https://www.vaultproject.io/docs/configuration/replication#allow_forwarding_via_header</a></p>
  10874. </td>
  10875. </tr>
  10876. <tr>
  10877. <td>
  10878. <code>headers</code></br>
  10879. <em>
  10880. map[string]string
  10881. </em>
  10882. </td>
  10883. <td>
  10884. <em>(Optional)</em>
  10885. <p>Headers to be added in Vault request</p>
  10886. </td>
  10887. </tr>
  10888. </tbody>
  10889. </table>
  10890. <h3 id="external-secrets.io/v1.VaultUserPassAuth">VaultUserPassAuth
  10891. </h3>
  10892. <p>
  10893. (<em>Appears on:</em>
  10894. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  10895. </p>
  10896. <p>
  10897. <p>VaultUserPassAuth authenticates with Vault using UserPass authentication method,
  10898. with the username and password stored in a Kubernetes Secret resource.</p>
  10899. </p>
  10900. <table>
  10901. <thead>
  10902. <tr>
  10903. <th>Field</th>
  10904. <th>Description</th>
  10905. </tr>
  10906. </thead>
  10907. <tbody>
  10908. <tr>
  10909. <td>
  10910. <code>path</code></br>
  10911. <em>
  10912. string
  10913. </em>
  10914. </td>
  10915. <td>
  10916. <p>Path where the UserPassword authentication backend is mounted
  10917. in Vault, e.g: &ldquo;userpass&rdquo;</p>
  10918. </td>
  10919. </tr>
  10920. <tr>
  10921. <td>
  10922. <code>username</code></br>
  10923. <em>
  10924. string
  10925. </em>
  10926. </td>
  10927. <td>
  10928. <p>Username is a username used to authenticate using the UserPass Vault
  10929. authentication method</p>
  10930. </td>
  10931. </tr>
  10932. <tr>
  10933. <td>
  10934. <code>secretRef</code></br>
  10935. <em>
  10936. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10937. External Secrets meta/v1.SecretKeySelector
  10938. </a>
  10939. </em>
  10940. </td>
  10941. <td>
  10942. <em>(Optional)</em>
  10943. <p>SecretRef to a key in a Secret resource containing password for the
  10944. user used to authenticate with Vault using the UserPass authentication
  10945. method</p>
  10946. </td>
  10947. </tr>
  10948. </tbody>
  10949. </table>
  10950. <h3 id="external-secrets.io/v1.WebhookCAProvider">WebhookCAProvider
  10951. </h3>
  10952. <p>
  10953. (<em>Appears on:</em>
  10954. <a href="#external-secrets.io/v1.WebhookProvider">WebhookProvider</a>)
  10955. </p>
  10956. <p>
  10957. <p>Defines a location to fetch the cert for the webhook provider from.</p>
  10958. </p>
  10959. <table>
  10960. <thead>
  10961. <tr>
  10962. <th>Field</th>
  10963. <th>Description</th>
  10964. </tr>
  10965. </thead>
  10966. <tbody>
  10967. <tr>
  10968. <td>
  10969. <code>type</code></br>
  10970. <em>
  10971. <a href="#external-secrets.io/v1.WebhookCAProviderType">
  10972. WebhookCAProviderType
  10973. </a>
  10974. </em>
  10975. </td>
  10976. <td>
  10977. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  10978. </td>
  10979. </tr>
  10980. <tr>
  10981. <td>
  10982. <code>name</code></br>
  10983. <em>
  10984. string
  10985. </em>
  10986. </td>
  10987. <td>
  10988. <p>The name of the object located at the provider type.</p>
  10989. </td>
  10990. </tr>
  10991. <tr>
  10992. <td>
  10993. <code>key</code></br>
  10994. <em>
  10995. string
  10996. </em>
  10997. </td>
  10998. <td>
  10999. <p>The key where the CA certificate can be found in the Secret or ConfigMap.</p>
  11000. </td>
  11001. </tr>
  11002. <tr>
  11003. <td>
  11004. <code>namespace</code></br>
  11005. <em>
  11006. string
  11007. </em>
  11008. </td>
  11009. <td>
  11010. <em>(Optional)</em>
  11011. <p>The namespace the Provider type is in.</p>
  11012. </td>
  11013. </tr>
  11014. </tbody>
  11015. </table>
  11016. <h3 id="external-secrets.io/v1.WebhookCAProviderType">WebhookCAProviderType
  11017. (<code>string</code> alias)</p></h3>
  11018. <p>
  11019. (<em>Appears on:</em>
  11020. <a href="#external-secrets.io/v1.WebhookCAProvider">WebhookCAProvider</a>)
  11021. </p>
  11022. <p>
  11023. </p>
  11024. <table>
  11025. <thead>
  11026. <tr>
  11027. <th>Value</th>
  11028. <th>Description</th>
  11029. </tr>
  11030. </thead>
  11031. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  11032. <td></td>
  11033. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  11034. <td></td>
  11035. </tr></tbody>
  11036. </table>
  11037. <h3 id="external-secrets.io/v1.WebhookProvider">WebhookProvider
  11038. </h3>
  11039. <p>
  11040. (<em>Appears on:</em>
  11041. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  11042. </p>
  11043. <p>
  11044. <p>WebHookProvider Configures an store to sync secrets from simple web apis.</p>
  11045. </p>
  11046. <table>
  11047. <thead>
  11048. <tr>
  11049. <th>Field</th>
  11050. <th>Description</th>
  11051. </tr>
  11052. </thead>
  11053. <tbody>
  11054. <tr>
  11055. <td>
  11056. <code>method</code></br>
  11057. <em>
  11058. string
  11059. </em>
  11060. </td>
  11061. <td>
  11062. <p>Webhook Method</p>
  11063. </td>
  11064. </tr>
  11065. <tr>
  11066. <td>
  11067. <code>url</code></br>
  11068. <em>
  11069. string
  11070. </em>
  11071. </td>
  11072. <td>
  11073. <p>Webhook url to call</p>
  11074. </td>
  11075. </tr>
  11076. <tr>
  11077. <td>
  11078. <code>headers</code></br>
  11079. <em>
  11080. map[string]string
  11081. </em>
  11082. </td>
  11083. <td>
  11084. <em>(Optional)</em>
  11085. <p>Headers</p>
  11086. </td>
  11087. </tr>
  11088. <tr>
  11089. <td>
  11090. <code>auth</code></br>
  11091. <em>
  11092. <a href="#external-secrets.io/v1.AuthorizationProtocol">
  11093. AuthorizationProtocol
  11094. </a>
  11095. </em>
  11096. </td>
  11097. <td>
  11098. <em>(Optional)</em>
  11099. <p>Auth specifies a authorization protocol. Only one protocol may be set.</p>
  11100. </td>
  11101. </tr>
  11102. <tr>
  11103. <td>
  11104. <code>body</code></br>
  11105. <em>
  11106. string
  11107. </em>
  11108. </td>
  11109. <td>
  11110. <em>(Optional)</em>
  11111. <p>Body</p>
  11112. </td>
  11113. </tr>
  11114. <tr>
  11115. <td>
  11116. <code>timeout</code></br>
  11117. <em>
  11118. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  11119. Kubernetes meta/v1.Duration
  11120. </a>
  11121. </em>
  11122. </td>
  11123. <td>
  11124. <em>(Optional)</em>
  11125. <p>Timeout</p>
  11126. </td>
  11127. </tr>
  11128. <tr>
  11129. <td>
  11130. <code>result</code></br>
  11131. <em>
  11132. <a href="#external-secrets.io/v1.WebhookResult">
  11133. WebhookResult
  11134. </a>
  11135. </em>
  11136. </td>
  11137. <td>
  11138. <p>Result formatting</p>
  11139. </td>
  11140. </tr>
  11141. <tr>
  11142. <td>
  11143. <code>secrets</code></br>
  11144. <em>
  11145. <a href="#external-secrets.io/v1.WebhookSecret">
  11146. []WebhookSecret
  11147. </a>
  11148. </em>
  11149. </td>
  11150. <td>
  11151. <em>(Optional)</em>
  11152. <p>Secrets to fill in templates
  11153. These secrets will be passed to the templating function as key value pairs under the given name</p>
  11154. </td>
  11155. </tr>
  11156. <tr>
  11157. <td>
  11158. <code>caBundle</code></br>
  11159. <em>
  11160. []byte
  11161. </em>
  11162. </td>
  11163. <td>
  11164. <em>(Optional)</em>
  11165. <p>PEM encoded CA bundle used to validate webhook server certificate. Only used
  11166. if the Server URL is using HTTPS protocol. This parameter is ignored for
  11167. plain HTTP protocol connection. If not set the system root certificates
  11168. are used to validate the TLS connection.</p>
  11169. </td>
  11170. </tr>
  11171. <tr>
  11172. <td>
  11173. <code>caProvider</code></br>
  11174. <em>
  11175. <a href="#external-secrets.io/v1.WebhookCAProvider">
  11176. WebhookCAProvider
  11177. </a>
  11178. </em>
  11179. </td>
  11180. <td>
  11181. <em>(Optional)</em>
  11182. <p>The provider for the CA bundle to use to validate webhook server certificate.</p>
  11183. </td>
  11184. </tr>
  11185. </tbody>
  11186. </table>
  11187. <h3 id="external-secrets.io/v1.WebhookResult">WebhookResult
  11188. </h3>
  11189. <p>
  11190. (<em>Appears on:</em>
  11191. <a href="#external-secrets.io/v1.WebhookProvider">WebhookProvider</a>)
  11192. </p>
  11193. <p>
  11194. </p>
  11195. <table>
  11196. <thead>
  11197. <tr>
  11198. <th>Field</th>
  11199. <th>Description</th>
  11200. </tr>
  11201. </thead>
  11202. <tbody>
  11203. <tr>
  11204. <td>
  11205. <code>jsonPath</code></br>
  11206. <em>
  11207. string
  11208. </em>
  11209. </td>
  11210. <td>
  11211. <em>(Optional)</em>
  11212. <p>Json path of return value</p>
  11213. </td>
  11214. </tr>
  11215. </tbody>
  11216. </table>
  11217. <h3 id="external-secrets.io/v1.WebhookSecret">WebhookSecret
  11218. </h3>
  11219. <p>
  11220. (<em>Appears on:</em>
  11221. <a href="#external-secrets.io/v1.WebhookProvider">WebhookProvider</a>)
  11222. </p>
  11223. <p>
  11224. </p>
  11225. <table>
  11226. <thead>
  11227. <tr>
  11228. <th>Field</th>
  11229. <th>Description</th>
  11230. </tr>
  11231. </thead>
  11232. <tbody>
  11233. <tr>
  11234. <td>
  11235. <code>name</code></br>
  11236. <em>
  11237. string
  11238. </em>
  11239. </td>
  11240. <td>
  11241. <p>Name of this secret in templates</p>
  11242. </td>
  11243. </tr>
  11244. <tr>
  11245. <td>
  11246. <code>secretRef</code></br>
  11247. <em>
  11248. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11249. External Secrets meta/v1.SecretKeySelector
  11250. </a>
  11251. </em>
  11252. </td>
  11253. <td>
  11254. <p>Secret ref to fill in credentials</p>
  11255. </td>
  11256. </tr>
  11257. </tbody>
  11258. </table>
  11259. <h3 id="external-secrets.io/v1.YandexCertificateManagerAuth">YandexCertificateManagerAuth
  11260. </h3>
  11261. <p>
  11262. (<em>Appears on:</em>
  11263. <a href="#external-secrets.io/v1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>)
  11264. </p>
  11265. <p>
  11266. </p>
  11267. <table>
  11268. <thead>
  11269. <tr>
  11270. <th>Field</th>
  11271. <th>Description</th>
  11272. </tr>
  11273. </thead>
  11274. <tbody>
  11275. <tr>
  11276. <td>
  11277. <code>authorizedKeySecretRef</code></br>
  11278. <em>
  11279. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11280. External Secrets meta/v1.SecretKeySelector
  11281. </a>
  11282. </em>
  11283. </td>
  11284. <td>
  11285. <em>(Optional)</em>
  11286. <p>The authorized key used for authentication</p>
  11287. </td>
  11288. </tr>
  11289. </tbody>
  11290. </table>
  11291. <h3 id="external-secrets.io/v1.YandexCertificateManagerCAProvider">YandexCertificateManagerCAProvider
  11292. </h3>
  11293. <p>
  11294. (<em>Appears on:</em>
  11295. <a href="#external-secrets.io/v1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>)
  11296. </p>
  11297. <p>
  11298. </p>
  11299. <table>
  11300. <thead>
  11301. <tr>
  11302. <th>Field</th>
  11303. <th>Description</th>
  11304. </tr>
  11305. </thead>
  11306. <tbody>
  11307. <tr>
  11308. <td>
  11309. <code>certSecretRef</code></br>
  11310. <em>
  11311. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11312. External Secrets meta/v1.SecretKeySelector
  11313. </a>
  11314. </em>
  11315. </td>
  11316. <td>
  11317. </td>
  11318. </tr>
  11319. </tbody>
  11320. </table>
  11321. <h3 id="external-secrets.io/v1.YandexCertificateManagerProvider">YandexCertificateManagerProvider
  11322. </h3>
  11323. <p>
  11324. (<em>Appears on:</em>
  11325. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  11326. </p>
  11327. <p>
  11328. <p>YandexCertificateManagerProvider Configures a store to sync secrets using the Yandex Certificate Manager provider.</p>
  11329. </p>
  11330. <table>
  11331. <thead>
  11332. <tr>
  11333. <th>Field</th>
  11334. <th>Description</th>
  11335. </tr>
  11336. </thead>
  11337. <tbody>
  11338. <tr>
  11339. <td>
  11340. <code>apiEndpoint</code></br>
  11341. <em>
  11342. string
  11343. </em>
  11344. </td>
  11345. <td>
  11346. <em>(Optional)</em>
  11347. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  11348. </td>
  11349. </tr>
  11350. <tr>
  11351. <td>
  11352. <code>auth</code></br>
  11353. <em>
  11354. <a href="#external-secrets.io/v1.YandexCertificateManagerAuth">
  11355. YandexCertificateManagerAuth
  11356. </a>
  11357. </em>
  11358. </td>
  11359. <td>
  11360. <p>Auth defines the information necessary to authenticate against Yandex Certificate Manager</p>
  11361. </td>
  11362. </tr>
  11363. <tr>
  11364. <td>
  11365. <code>caProvider</code></br>
  11366. <em>
  11367. <a href="#external-secrets.io/v1.YandexCertificateManagerCAProvider">
  11368. YandexCertificateManagerCAProvider
  11369. </a>
  11370. </em>
  11371. </td>
  11372. <td>
  11373. <em>(Optional)</em>
  11374. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  11375. </td>
  11376. </tr>
  11377. </tbody>
  11378. </table>
  11379. <h3 id="external-secrets.io/v1.YandexLockboxAuth">YandexLockboxAuth
  11380. </h3>
  11381. <p>
  11382. (<em>Appears on:</em>
  11383. <a href="#external-secrets.io/v1.YandexLockboxProvider">YandexLockboxProvider</a>)
  11384. </p>
  11385. <p>
  11386. </p>
  11387. <table>
  11388. <thead>
  11389. <tr>
  11390. <th>Field</th>
  11391. <th>Description</th>
  11392. </tr>
  11393. </thead>
  11394. <tbody>
  11395. <tr>
  11396. <td>
  11397. <code>authorizedKeySecretRef</code></br>
  11398. <em>
  11399. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11400. External Secrets meta/v1.SecretKeySelector
  11401. </a>
  11402. </em>
  11403. </td>
  11404. <td>
  11405. <em>(Optional)</em>
  11406. <p>The authorized key used for authentication</p>
  11407. </td>
  11408. </tr>
  11409. </tbody>
  11410. </table>
  11411. <h3 id="external-secrets.io/v1.YandexLockboxCAProvider">YandexLockboxCAProvider
  11412. </h3>
  11413. <p>
  11414. (<em>Appears on:</em>
  11415. <a href="#external-secrets.io/v1.YandexLockboxProvider">YandexLockboxProvider</a>)
  11416. </p>
  11417. <p>
  11418. </p>
  11419. <table>
  11420. <thead>
  11421. <tr>
  11422. <th>Field</th>
  11423. <th>Description</th>
  11424. </tr>
  11425. </thead>
  11426. <tbody>
  11427. <tr>
  11428. <td>
  11429. <code>certSecretRef</code></br>
  11430. <em>
  11431. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11432. External Secrets meta/v1.SecretKeySelector
  11433. </a>
  11434. </em>
  11435. </td>
  11436. <td>
  11437. </td>
  11438. </tr>
  11439. </tbody>
  11440. </table>
  11441. <h3 id="external-secrets.io/v1.YandexLockboxProvider">YandexLockboxProvider
  11442. </h3>
  11443. <p>
  11444. (<em>Appears on:</em>
  11445. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  11446. </p>
  11447. <p>
  11448. <p>YandexLockboxProvider Configures a store to sync secrets using the Yandex Lockbox provider.</p>
  11449. </p>
  11450. <table>
  11451. <thead>
  11452. <tr>
  11453. <th>Field</th>
  11454. <th>Description</th>
  11455. </tr>
  11456. </thead>
  11457. <tbody>
  11458. <tr>
  11459. <td>
  11460. <code>apiEndpoint</code></br>
  11461. <em>
  11462. string
  11463. </em>
  11464. </td>
  11465. <td>
  11466. <em>(Optional)</em>
  11467. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  11468. </td>
  11469. </tr>
  11470. <tr>
  11471. <td>
  11472. <code>auth</code></br>
  11473. <em>
  11474. <a href="#external-secrets.io/v1.YandexLockboxAuth">
  11475. YandexLockboxAuth
  11476. </a>
  11477. </em>
  11478. </td>
  11479. <td>
  11480. <p>Auth defines the information necessary to authenticate against Yandex Lockbox</p>
  11481. </td>
  11482. </tr>
  11483. <tr>
  11484. <td>
  11485. <code>caProvider</code></br>
  11486. <em>
  11487. <a href="#external-secrets.io/v1.YandexLockboxCAProvider">
  11488. YandexLockboxCAProvider
  11489. </a>
  11490. </em>
  11491. </td>
  11492. <td>
  11493. <em>(Optional)</em>
  11494. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  11495. </td>
  11496. </tr>
  11497. </tbody>
  11498. </table>
  11499. <hr/>
  11500. <p><em>
  11501. Generated with <code>gen-crd-api-reference-docs</code>.
  11502. </em></p>
  11503. </article>
  11504. </div>
  11505. <script>var target=document.getElementById(location.hash.slice(1));target&&target.name&&(target.checked=target.name.startsWith("__tabbed_"))</script>
  11506. </div>
  11507. </main>
  11508. <img referrerpolicy="no-referrer-when-downgrade" src="https://static.scarf.sh/a.png?x-pxid=6658a9eb-067d-49f1-94f2-b8b00f21451e" alt=""/>
  11509. <footer class="md-footer">
  11510. <div class="md-footer-meta md-typeset">
  11511. <div class="md-footer-meta__inner md-grid">
  11512. <div class="md-copyright">
  11513. <div class="md-copyright__highlight">
  11514. &copy; 2025 The external-secrets Authors.<br/>
  11515. &copy; 2025 The Linux Foundation. All rights reserved.<br/><br/>
  11516. The Linux Foundation has registered trademarks and uses trademarks.<br/>
  11517. For a list of trademarks of The Linux Foundation, please see our <a href="https://www.linuxfoundation.org/trademark-usage/">Trademark Usage page</a>.
  11518. </div>
  11519. Made with
  11520. <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
  11521. Material for MkDocs
  11522. </a>
  11523. </div>
  11524. </div>
  11525. </div>
  11526. </footer>
  11527. </div>
  11528. <div class="md-dialog" data-md-component="dialog">
  11529. <div class="md-dialog__inner md-typeset"></div>
  11530. </div>
  11531. <script id="__config" type="application/json">{"base": "../..", "features": ["navigation.tabs", "navigation.indexes", "navigation.expand"], "search": "../../assets/javascripts/workers/search.d50fe291.min.js", "tags": null, "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}, "version": {"provider": "mike"}}</script>
  11532. <script src="../../assets/javascripts/bundle.13a4f30d.min.js"></script>
  11533. </body>
  11534. </html>