index.html 273 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736137371373813739137401374113742137431374413745137461374713748137491375013751137521375313754137551375613757137581375913760137611376213763137641376513766137671376813769137701377113772137731377413775137761377713778137791378013781137821378313784137851378613787137881378913790137911379213793137941379513796137971379813799138001380113802138031380413805138061380713808138091381013811138121381313814138151381613817138181381913820138211382213823138241382513826138271382813829138301383113832138331383413835138361383713838138391384013841138421384313844138451384613847138481384913850138511385213853138541385513856138571385813859138601386113862138631386413865138661386713868138691387013871138721387313874138751387613877138781387913880138811388213883138841388513886138871388813889138901389113892138931389413895138961389713898138991390013901139021390313904139051390613907139081390913910139111391213913139141391513916139171391813919139201392113922139231392413925139261392713928139291393013931139321393313934139351393613937139381393913940139411394213943139441394513946139471394813949139501395113952139531395413955139561395713958139591396013961139621396313964139651396613967139681396913970139711397213973139741397513976139771397813979139801398113982139831398413985139861398713988139891399013991139921399313994139951399613997139981399914000140011400214003140041400514006140071400814009140101401114012140131401414015140161401714018140191402014021140221402314024140251402614027140281402914030140311403214033140341403514036140371403814039140401404114042140431404414045140461404714048140491405014051140521405314054140551405614057140581405914060140611406214063140641406514066140671406814069140701407114072140731407414075140761407714078140791408014081140821408314084140851408614087140881408914090140911409214093140941409514096140971409814099141001410114102141031410414105141061410714108141091411014111141121411314114141151411614117141181411914120141211412214123141241412514126141271412814129141301413114132141331413414135141361413714138141391414014141141421414314144141451414614147141481414914150141511415214153141541415514156141571415814159141601416114162141631416414165141661416714168141691417014171141721417314174141751417614177141781417914180141811418214183141841418514186141871418814189141901419114192141931419414195141961419714198141991420014201142021420314204142051420614207142081420914210142111421214213142141421514216142171421814219142201422114222142231422414225142261422714228142291423014231142321423314234142351423614237142381423914240142411424214243142441424514246142471424814249142501425114252142531425414255142561425714258142591426014261142621426314264142651426614267142681426914270142711427214273142741427514276142771427814279142801428114282142831428414285142861428714288142891429014291142921429314294142951429614297142981429914300143011430214303143041430514306143071430814309143101431114312143131431414315143161431714318143191432014321143221432314324143251432614327143281432914330143311433214333143341433514336143371433814339143401434114342143431434414345143461434714348143491435014351143521435314354143551435614357143581435914360143611436214363143641436514366143671436814369143701437114372143731437414375143761437714378143791438014381143821438314384143851438614387143881438914390143911439214393143941439514396143971439814399144001440114402144031440414405144061440714408144091441014411144121441314414144151441614417144181441914420144211442214423144241442514426144271442814429144301443114432144331443414435144361443714438144391444014441144421444314444144451444614447144481444914450144511445214453144541445514456144571445814459144601446114462144631446414465144661446714468144691447014471144721447314474144751447614477144781447914480144811448214483144841448514486144871448814489144901449114492144931449414495144961449714498144991450014501145021450314504145051450614507145081450914510145111451214513145141451514516145171451814519145201452114522145231452414525145261452714528145291453014531145321453314534145351453614537145381453914540145411454214543145441454514546145471454814549145501455114552145531455414555145561455714558145591456014561145621456314564145651456614567145681456914570145711457214573145741457514576145771457814579145801458114582145831458414585145861458714588145891459014591145921459314594145951459614597145981459914600146011460214603146041460514606146071460814609146101461114612146131461414615146161461714618146191462014621146221462314624146251462614627146281462914630146311463214633146341463514636146371463814639146401464114642146431464414645146461464714648146491465014651146521465314654146551465614657146581465914660146611466214663146641466514666146671466814669146701467114672146731467414675146761467714678146791468014681146821468314684146851468614687146881468914690146911469214693146941469514696146971469814699147001470114702147031470414705147061470714708147091471014711147121471314714147151471614717147181471914720147211472214723147241472514726147271472814729147301473114732147331473414735147361473714738147391474014741147421474314744147451474614747147481474914750147511475214753147541475514756147571475814759147601476114762147631476414765147661476714768147691477014771147721477314774147751477614777147781477914780147811478214783147841478514786147871478814789147901479114792147931479414795147961479714798147991480014801148021480314804148051480614807148081480914810148111481214813148141481514816148171481814819148201482114822148231482414825148261482714828148291483014831148321483314834148351483614837148381483914840148411484214843148441484514846148471484814849148501485114852148531485414855148561485714858148591486014861148621486314864148651486614867148681486914870148711487214873148741487514876148771487814879148801488114882148831488414885148861488714888148891489014891148921489314894148951489614897148981489914900149011490214903149041490514906149071490814909149101491114912149131491414915149161491714918149191492014921149221492314924149251492614927149281492914930149311493214933149341493514936149371493814939149401494114942149431494414945149461494714948149491495014951149521495314954149551495614957149581495914960149611496214963149641496514966149671496814969149701497114972149731497414975149761497714978149791498014981149821498314984149851498614987149881498914990149911499214993149941499514996149971499814999150001500115002150031500415005150061500715008150091501015011150121501315014150151501615017150181501915020150211502215023150241502515026150271502815029150301503115032150331503415035150361503715038150391504015041150421504315044150451504615047150481504915050150511505215053150541505515056150571505815059150601506115062150631506415065150661506715068150691507015071150721507315074150751507615077150781507915080150811508215083150841508515086150871508815089150901509115092150931509415095150961509715098150991510015101151021510315104151051510615107151081510915110151111511215113151141511515116151171511815119151201512115122151231512415125151261512715128151291513015131151321513315134151351513615137151381513915140151411514215143151441514515146151471514815149151501515115152151531515415155151561515715158151591516015161151621516315164151651516615167151681516915170151711517215173151741517515176151771517815179151801518115182151831518415185151861518715188151891519015191151921519315194151951519615197151981519915200152011520215203152041520515206152071520815209152101521115212152131521415215152161521715218152191522015221152221522315224152251522615227152281522915230152311523215233152341523515236152371523815239152401524115242152431524415245152461524715248152491525015251152521525315254152551525615257152581525915260152611526215263152641526515266152671526815269152701527115272152731527415275152761527715278152791528015281152821528315284152851528615287152881528915290152911529215293152941529515296152971529815299153001530115302153031530415305153061530715308153091531015311153121531315314153151531615317153181531915320153211532215323153241532515326153271532815329153301533115332153331533415335153361533715338153391534015341153421534315344153451534615347153481534915350153511535215353153541535515356153571535815359153601536115362153631536415365153661536715368153691537015371153721537315374153751537615377153781537915380153811538215383153841538515386153871538815389153901539115392153931539415395153961539715398153991540015401154021540315404154051540615407154081540915410154111541215413154141541515416154171541815419154201542115422154231542415425154261542715428154291543015431154321543315434154351543615437154381543915440154411544215443154441544515446154471544815449154501545115452154531545415455154561545715458154591546015461154621546315464154651546615467154681546915470154711547215473154741547515476154771547815479154801548115482154831548415485154861548715488154891549015491154921549315494154951549615497154981549915500155011550215503
  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/sshkey/">
  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.19">
  10. <title>API specification - External Secrets Operator</title>
  11. <link rel="stylesheet" href="../../assets/stylesheets/main.7e37652d.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 7.0.0 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 2025 Fonticons, Inc.--><path fill="currentColor" d="M439.6 236.1 244 40.5c-5.4-5.5-12.8-8.5-20.4-8.5s-15 3-20.4 8.4L162.5 81l51.5 51.5c27.1-9.1 52.7 16.8 43.4 43.7l49.7 49.7c34.2-11.8 61.2 31 35.5 56.7-26.5 26.5-70.2-2.9-56-37.3L240.3 199v121.9c25.3 12.5 22.3 41.8 9.1 55-6.4 6.4-15.2 10.1-24.3 10.1s-17.8-3.6-24.3-10.1c-17.6-17.6-11.1-46.9 11.2-56v-123c-20.8-8.5-24.6-30.7-18.6-45L142.6 101 8.5 235.1C3 240.6 0 247.9 0 255.5s3 15 8.5 20.4l195.6 195.7c5.4 5.4 12.7 8.4 20.4 8.4s15-3 20.4-8.4l194.7-194.7c5.4-5.4 8.4-12.8 8.4-20.4s-3-15-8.4-20.4"/></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 7.0.0 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 2025 Fonticons, Inc.--><path fill="currentColor" d="M439.6 236.1 244 40.5c-5.4-5.5-12.8-8.5-20.4-8.5s-15 3-20.4 8.4L162.5 81l51.5 51.5c27.1-9.1 52.7 16.8 43.4 43.7l49.7 49.7c34.2-11.8 61.2 31 35.5 56.7-26.5 26.5-70.2-2.9-56-37.3L240.3 199v121.9c25.3 12.5 22.3 41.8 9.1 55-6.4 6.4-15.2 10.1-24.3 10.1s-17.8-3.6-24.3-10.1c-17.6-17.6-11.1-46.9 11.2-56v-123c-20.8-8.5-24.6-30.7-18.6-45L142.6 101 8.5 235.1C3 240.6 0 247.9 0 255.5s3 15 8.5 20.4l195.6 195.7c5.4 5.4 12.7 8.4 20.4 8.4s15-3 20.4-8.4l194.7-194.7c5.4-5.4 8.4-12.8 8.4-20.4s-3-15-8.4-20.4"/></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. <li class="md-nav__item">
  434. <a href="../generator/sshkey/" class="md-nav__link">
  435. <span class="md-ellipsis">
  436. SSHKey
  437. </span>
  438. </a>
  439. </li>
  440. </ul>
  441. </nav>
  442. </li>
  443. <li class="md-nav__item md-nav__item--active md-nav__item--nested">
  444. <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4" checked>
  445. <label class="md-nav__link" for="__nav_2_4" id="__nav_2_4_label" tabindex="0">
  446. <span class="md-ellipsis">
  447. Reference Docs
  448. </span>
  449. <span class="md-nav__icon md-icon"></span>
  450. </label>
  451. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_4_label" aria-expanded="true">
  452. <label class="md-nav__title" for="__nav_2_4">
  453. <span class="md-nav__icon md-icon"></span>
  454. Reference Docs
  455. </label>
  456. <ul class="md-nav__list" data-md-scrollfix>
  457. <li class="md-nav__item md-nav__item--active">
  458. <input class="md-nav__toggle md-toggle" type="checkbox" id="__toc">
  459. <a href="./" class="md-nav__link md-nav__link--active">
  460. <span class="md-ellipsis">
  461. API specification
  462. </span>
  463. </a>
  464. </li>
  465. <li class="md-nav__item">
  466. <a href="../controller-options/" class="md-nav__link">
  467. <span class="md-ellipsis">
  468. Controller Options
  469. </span>
  470. </a>
  471. </li>
  472. <li class="md-nav__item">
  473. <a href="../metrics/" class="md-nav__link">
  474. <span class="md-ellipsis">
  475. Metrics
  476. </span>
  477. </a>
  478. </li>
  479. <li class="md-nav__item">
  480. <a href="../selectable-fields/" class="md-nav__link">
  481. <span class="md-ellipsis">
  482. Selectable Fields
  483. </span>
  484. </a>
  485. </li>
  486. </ul>
  487. </nav>
  488. </li>
  489. </ul>
  490. </nav>
  491. </li>
  492. <li class="md-nav__item md-nav__item--nested">
  493. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3" >
  494. <label class="md-nav__link" for="__nav_3" id="__nav_3_label" tabindex="0">
  495. <span class="md-ellipsis">
  496. Guides
  497. </span>
  498. <span class="md-nav__icon md-icon"></span>
  499. </label>
  500. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_3_label" aria-expanded="false">
  501. <label class="md-nav__title" for="__nav_3">
  502. <span class="md-nav__icon md-icon"></span>
  503. Guides
  504. </label>
  505. <ul class="md-nav__list" data-md-scrollfix>
  506. <li class="md-nav__item">
  507. <a href="../../guides/introduction/" class="md-nav__link">
  508. <span class="md-ellipsis">
  509. Introduction
  510. </span>
  511. </a>
  512. </li>
  513. <li class="md-nav__item md-nav__item--nested">
  514. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_2" >
  515. <label class="md-nav__link" for="__nav_3_2" id="__nav_3_2_label" tabindex="0">
  516. <span class="md-ellipsis">
  517. External Secrets
  518. </span>
  519. <span class="md-nav__icon md-icon"></span>
  520. </label>
  521. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_2_label" aria-expanded="false">
  522. <label class="md-nav__title" for="__nav_3_2">
  523. <span class="md-nav__icon md-icon"></span>
  524. External Secrets
  525. </label>
  526. <ul class="md-nav__list" data-md-scrollfix>
  527. <li class="md-nav__item">
  528. <a href="../../guides/all-keys-one-secret/" class="md-nav__link">
  529. <span class="md-ellipsis">
  530. Extract structured data
  531. </span>
  532. </a>
  533. </li>
  534. <li class="md-nav__item">
  535. <a href="../../guides/getallsecrets/" class="md-nav__link">
  536. <span class="md-ellipsis">
  537. Find Secrets by Name or Metadata
  538. </span>
  539. </a>
  540. </li>
  541. <li class="md-nav__item">
  542. <a href="../../guides/datafrom-rewrite/" class="md-nav__link">
  543. <span class="md-ellipsis">
  544. Rewriting Keys
  545. </span>
  546. </a>
  547. </li>
  548. <li class="md-nav__item md-nav__item--nested">
  549. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_2_4" >
  550. <label class="md-nav__link" for="__nav_3_2_4" id="__nav_3_2_4_label" tabindex="0">
  551. <span class="md-ellipsis">
  552. Advanced Templating
  553. </span>
  554. <span class="md-nav__icon md-icon"></span>
  555. </label>
  556. <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_3_2_4_label" aria-expanded="false">
  557. <label class="md-nav__title" for="__nav_3_2_4">
  558. <span class="md-nav__icon md-icon"></span>
  559. Advanced Templating
  560. </label>
  561. <ul class="md-nav__list" data-md-scrollfix>
  562. <li class="md-nav__item">
  563. <a href="../../guides/templating/" class="md-nav__link">
  564. <span class="md-ellipsis">
  565. v2
  566. </span>
  567. </a>
  568. </li>
  569. <li class="md-nav__item">
  570. <a href="../../guides/templating-v1/" class="md-nav__link">
  571. <span class="md-ellipsis">
  572. v1
  573. </span>
  574. </a>
  575. </li>
  576. </ul>
  577. </nav>
  578. </li>
  579. <li class="md-nav__item">
  580. <a href="../../guides/common-k8s-secret-types/" class="md-nav__link">
  581. <span class="md-ellipsis">
  582. Kubernetes Secret Types
  583. </span>
  584. </a>
  585. </li>
  586. <li class="md-nav__item">
  587. <a href="../../guides/ownership-deletion-policy/" class="md-nav__link">
  588. <span class="md-ellipsis">
  589. Lifecycle: ownership & deletion
  590. </span>
  591. </a>
  592. </li>
  593. <li class="md-nav__item">
  594. <a href="../../guides/decoding-strategy/" class="md-nav__link">
  595. <span class="md-ellipsis">
  596. Decoding Strategies
  597. </span>
  598. </a>
  599. </li>
  600. <li class="md-nav__item">
  601. <a href="../../guides/controller-class/" class="md-nav__link">
  602. <span class="md-ellipsis">
  603. Controller Classes
  604. </span>
  605. </a>
  606. </li>
  607. </ul>
  608. </nav>
  609. </li>
  610. <li class="md-nav__item">
  611. <a href="../../guides/generator/" class="md-nav__link">
  612. <span class="md-ellipsis">
  613. Generators
  614. </span>
  615. </a>
  616. </li>
  617. <li class="md-nav__item">
  618. <a href="../../guides/pushsecrets/" class="md-nav__link">
  619. <span class="md-ellipsis">
  620. Push Secrets
  621. </span>
  622. </a>
  623. </li>
  624. <li class="md-nav__item md-nav__item--nested">
  625. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_5" >
  626. <label class="md-nav__link" for="__nav_3_5" id="__nav_3_5_label" tabindex="0">
  627. <span class="md-ellipsis">
  628. Operations
  629. </span>
  630. <span class="md-nav__icon md-icon"></span>
  631. </label>
  632. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_5_label" aria-expanded="false">
  633. <label class="md-nav__title" for="__nav_3_5">
  634. <span class="md-nav__icon md-icon"></span>
  635. Operations
  636. </label>
  637. <ul class="md-nav__list" data-md-scrollfix>
  638. <li class="md-nav__item">
  639. <a href="../../guides/multi-tenancy/" class="md-nav__link">
  640. <span class="md-ellipsis">
  641. Multi Tenancy
  642. </span>
  643. </a>
  644. </li>
  645. <li class="md-nav__item">
  646. <a href="../../guides/security-best-practices/" class="md-nav__link">
  647. <span class="md-ellipsis">
  648. Security Best Practices
  649. </span>
  650. </a>
  651. </li>
  652. <li class="md-nav__item">
  653. <a href="../../guides/threat-model/" class="md-nav__link">
  654. <span class="md-ellipsis">
  655. Threat Model
  656. </span>
  657. </a>
  658. </li>
  659. <li class="md-nav__item">
  660. <a href="../../guides/v1beta1/" class="md-nav__link">
  661. <span class="md-ellipsis">
  662. Upgrading to v1beta1
  663. </span>
  664. </a>
  665. </li>
  666. <li class="md-nav__item">
  667. <a href="../../guides/using-latest-image/" class="md-nav__link">
  668. <span class="md-ellipsis">
  669. Using Latest Image
  670. </span>
  671. </a>
  672. </li>
  673. <li class="md-nav__item">
  674. <a href="../../guides/disable-cluster-features/" class="md-nav__link">
  675. <span class="md-ellipsis">
  676. Disable Cluster Features
  677. </span>
  678. </a>
  679. </li>
  680. </ul>
  681. </nav>
  682. </li>
  683. <li class="md-nav__item md-nav__item--nested">
  684. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_6" >
  685. <label class="md-nav__link" for="__nav_3_6" id="__nav_3_6_label" tabindex="0">
  686. <span class="md-ellipsis">
  687. Tooling
  688. </span>
  689. <span class="md-nav__icon md-icon"></span>
  690. </label>
  691. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_6_label" aria-expanded="false">
  692. <label class="md-nav__title" for="__nav_3_6">
  693. <span class="md-nav__icon md-icon"></span>
  694. Tooling
  695. </label>
  696. <ul class="md-nav__list" data-md-scrollfix>
  697. <li class="md-nav__item">
  698. <a href="../../guides/using-esoctl-tool/" class="md-nav__link">
  699. <span class="md-ellipsis">
  700. Using the esoctl tool
  701. </span>
  702. </a>
  703. </li>
  704. </ul>
  705. </nav>
  706. </li>
  707. </ul>
  708. </nav>
  709. </li>
  710. <li class="md-nav__item md-nav__item--nested">
  711. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_4" >
  712. <label class="md-nav__link" for="__nav_4" id="__nav_4_label" tabindex="0">
  713. <span class="md-ellipsis">
  714. Provider
  715. </span>
  716. <span class="md-nav__icon md-icon"></span>
  717. </label>
  718. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_4_label" aria-expanded="false">
  719. <label class="md-nav__title" for="__nav_4">
  720. <span class="md-nav__icon md-icon"></span>
  721. Provider
  722. </label>
  723. <ul class="md-nav__list" data-md-scrollfix>
  724. <li class="md-nav__item">
  725. <a href="../../provider/aws-secrets-manager/" class="md-nav__link">
  726. <span class="md-ellipsis">
  727. AWS Secrets Manager
  728. </span>
  729. </a>
  730. </li>
  731. <li class="md-nav__item">
  732. <a href="../../provider/aws-parameter-store/" class="md-nav__link">
  733. <span class="md-ellipsis">
  734. AWS Parameter Store
  735. </span>
  736. </a>
  737. </li>
  738. <li class="md-nav__item">
  739. <a href="../../provider/azure-key-vault/" class="md-nav__link">
  740. <span class="md-ellipsis">
  741. Azure Key Vault
  742. </span>
  743. </a>
  744. </li>
  745. <li class="md-nav__item">
  746. <a href="../../provider/beyondtrust/" class="md-nav__link">
  747. <span class="md-ellipsis">
  748. BeyondTrust
  749. </span>
  750. </a>
  751. </li>
  752. <li class="md-nav__item">
  753. <a href="../../provider/bitwarden-secrets-manager/" class="md-nav__link">
  754. <span class="md-ellipsis">
  755. Bitwarden Secrets Manager
  756. </span>
  757. </a>
  758. </li>
  759. <li class="md-nav__item">
  760. <a href="../../provider/chef/" class="md-nav__link">
  761. <span class="md-ellipsis">
  762. Chef
  763. </span>
  764. </a>
  765. </li>
  766. <li class="md-nav__item">
  767. <a href="../../provider/cloudru/" class="md-nav__link">
  768. <span class="md-ellipsis">
  769. Cloud.ru Secret Manager
  770. </span>
  771. </a>
  772. </li>
  773. <li class="md-nav__item">
  774. <a href="../../provider/conjur/" class="md-nav__link">
  775. <span class="md-ellipsis">
  776. CyberArk Conjur
  777. </span>
  778. </a>
  779. </li>
  780. <li class="md-nav__item">
  781. <a href="../../provider/device42/" class="md-nav__link">
  782. <span class="md-ellipsis">
  783. Device42
  784. </span>
  785. </a>
  786. </li>
  787. <li class="md-nav__item">
  788. <a href="../../provider/google-secrets-manager/" class="md-nav__link">
  789. <span class="md-ellipsis">
  790. Google Cloud Secret Manager
  791. </span>
  792. </a>
  793. </li>
  794. <li class="md-nav__item">
  795. <a href="../../provider/hashicorp-vault/" class="md-nav__link">
  796. <span class="md-ellipsis">
  797. HashiCorp Vault
  798. </span>
  799. </a>
  800. </li>
  801. <li class="md-nav__item">
  802. <a href="../../provider/kubernetes/" class="md-nav__link">
  803. <span class="md-ellipsis">
  804. Kubernetes
  805. </span>
  806. </a>
  807. </li>
  808. <li class="md-nav__item">
  809. <a href="../../provider/ibm-secrets-manager/" class="md-nav__link">
  810. <span class="md-ellipsis">
  811. IBM Secrets Manager
  812. </span>
  813. </a>
  814. </li>
  815. <li class="md-nav__item">
  816. <a href="../../provider/akeyless/" class="md-nav__link">
  817. <span class="md-ellipsis">
  818. Akeyless
  819. </span>
  820. </a>
  821. </li>
  822. <li class="md-nav__item">
  823. <a href="../../provider/yandex-certificate-manager/" class="md-nav__link">
  824. <span class="md-ellipsis">
  825. Yandex Certificate Manager
  826. </span>
  827. </a>
  828. </li>
  829. <li class="md-nav__item">
  830. <a href="../../provider/yandex-lockbox/" class="md-nav__link">
  831. <span class="md-ellipsis">
  832. Yandex Lockbox
  833. </span>
  834. </a>
  835. </li>
  836. <li class="md-nav__item">
  837. <a href="../../provider/alibaba/" class="md-nav__link">
  838. <span class="md-ellipsis">
  839. Alibaba Cloud
  840. </span>
  841. </a>
  842. </li>
  843. <li class="md-nav__item">
  844. <a href="../../provider/gitlab-variables/" class="md-nav__link">
  845. <span class="md-ellipsis">
  846. GitLab Variables
  847. </span>
  848. </a>
  849. </li>
  850. <li class="md-nav__item">
  851. <a href="../../provider/github/" class="md-nav__link">
  852. <span class="md-ellipsis">
  853. Github Actions Secrets
  854. </span>
  855. </a>
  856. </li>
  857. <li class="md-nav__item">
  858. <a href="../../provider/oracle-vault/" class="md-nav__link">
  859. <span class="md-ellipsis">
  860. Oracle Vault
  861. </span>
  862. </a>
  863. </li>
  864. <li class="md-nav__item">
  865. <a href="../../provider/1password-automation/" class="md-nav__link">
  866. <span class="md-ellipsis">
  867. 1Password Connect Server
  868. </span>
  869. </a>
  870. </li>
  871. <li class="md-nav__item">
  872. <a href="../../provider/1password-sdk/" class="md-nav__link">
  873. <span class="md-ellipsis">
  874. 1Password SDK
  875. </span>
  876. </a>
  877. </li>
  878. <li class="md-nav__item">
  879. <a href="../../provider/webhook/" class="md-nav__link">
  880. <span class="md-ellipsis">
  881. Webhook
  882. </span>
  883. </a>
  884. </li>
  885. <li class="md-nav__item">
  886. <a href="../../provider/fake/" class="md-nav__link">
  887. <span class="md-ellipsis">
  888. Fake
  889. </span>
  890. </a>
  891. </li>
  892. <li class="md-nav__item">
  893. <a href="../../provider/senhasegura-dsm/" class="md-nav__link">
  894. <span class="md-ellipsis">
  895. senhasegura DevOps Secrets Management (DSM)
  896. </span>
  897. </a>
  898. </li>
  899. <li class="md-nav__item">
  900. <a href="../../provider/doppler/" class="md-nav__link">
  901. <span class="md-ellipsis">
  902. Doppler
  903. </span>
  904. </a>
  905. </li>
  906. <li class="md-nav__item">
  907. <a href="../../provider/keeper-security/" class="md-nav__link">
  908. <span class="md-ellipsis">
  909. Keeper Security
  910. </span>
  911. </a>
  912. </li>
  913. <li class="md-nav__item">
  914. <a href="../../provider/cloak/" class="md-nav__link">
  915. <span class="md-ellipsis">
  916. Cloak End 2 End Encrypted Secrets
  917. </span>
  918. </a>
  919. </li>
  920. <li class="md-nav__item">
  921. <a href="../../provider/scaleway/" class="md-nav__link">
  922. <span class="md-ellipsis">
  923. Scaleway
  924. </span>
  925. </a>
  926. </li>
  927. <li class="md-nav__item">
  928. <a href="../../provider/delinea/" class="md-nav__link">
  929. <span class="md-ellipsis">
  930. Delinea
  931. </span>
  932. </a>
  933. </li>
  934. <li class="md-nav__item">
  935. <a href="../../provider/secretserver/" class="md-nav__link">
  936. <span class="md-ellipsis">
  937. Secret Server
  938. </span>
  939. </a>
  940. </li>
  941. <li class="md-nav__item">
  942. <a href="../../provider/passbolt/" class="md-nav__link">
  943. <span class="md-ellipsis">
  944. Passbolt
  945. </span>
  946. </a>
  947. </li>
  948. <li class="md-nav__item">
  949. <a href="../../provider/pulumi/" class="md-nav__link">
  950. <span class="md-ellipsis">
  951. Pulumi ESC
  952. </span>
  953. </a>
  954. </li>
  955. <li class="md-nav__item">
  956. <a href="../../provider/onboardbase/" class="md-nav__link">
  957. <span class="md-ellipsis">
  958. Onboardbase
  959. </span>
  960. </a>
  961. </li>
  962. <li class="md-nav__item">
  963. <a href="../../provider-passworddepot/" class="md-nav__link">
  964. <span class="md-ellipsis">
  965. Password Depot
  966. </span>
  967. </a>
  968. </li>
  969. <li class="md-nav__item">
  970. <a href="../../provider/fortanix/" class="md-nav__link">
  971. <span class="md-ellipsis">
  972. Fortanix
  973. </span>
  974. </a>
  975. </li>
  976. <li class="md-nav__item">
  977. <a href="../../provider/infisical/" class="md-nav__link">
  978. <span class="md-ellipsis">
  979. Infisical
  980. </span>
  981. </a>
  982. </li>
  983. <li class="md-nav__item">
  984. <a href="../../provider/previder/" class="md-nav__link">
  985. <span class="md-ellipsis">
  986. Previder
  987. </span>
  988. </a>
  989. </li>
  990. <li class="md-nav__item">
  991. <a href="../../provider/openbao/" class="md-nav__link">
  992. <span class="md-ellipsis">
  993. OpenBao
  994. </span>
  995. </a>
  996. </li>
  997. </ul>
  998. </nav>
  999. </li>
  1000. <li class="md-nav__item md-nav__item--nested">
  1001. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_5" >
  1002. <label class="md-nav__link" for="__nav_5" id="__nav_5_label" tabindex="0">
  1003. <span class="md-ellipsis">
  1004. Examples
  1005. </span>
  1006. <span class="md-nav__icon md-icon"></span>
  1007. </label>
  1008. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_5_label" aria-expanded="false">
  1009. <label class="md-nav__title" for="__nav_5">
  1010. <span class="md-nav__icon md-icon"></span>
  1011. Examples
  1012. </label>
  1013. <ul class="md-nav__list" data-md-scrollfix>
  1014. <li class="md-nav__item">
  1015. <a href="../../examples/gitops-using-fluxcd/" class="md-nav__link">
  1016. <span class="md-ellipsis">
  1017. FluxCD
  1018. </span>
  1019. </a>
  1020. </li>
  1021. <li class="md-nav__item">
  1022. <a href="../../examples/anchore-engine-credentials/" class="md-nav__link">
  1023. <span class="md-ellipsis">
  1024. Anchore Engine
  1025. </span>
  1026. </a>
  1027. </li>
  1028. <li class="md-nav__item">
  1029. <a href="../../examples/jenkins-kubernetes-credentials/" class="md-nav__link">
  1030. <span class="md-ellipsis">
  1031. Jenkins
  1032. </span>
  1033. </a>
  1034. </li>
  1035. <li class="md-nav__item">
  1036. <a href="../../examples/bitwarden/" class="md-nav__link">
  1037. <span class="md-ellipsis">
  1038. Bitwarden
  1039. </span>
  1040. </a>
  1041. </li>
  1042. </ul>
  1043. </nav>
  1044. </li>
  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" >
  1047. <label class="md-nav__link" for="__nav_6" id="__nav_6_label" tabindex="0">
  1048. <span class="md-ellipsis">
  1049. Community
  1050. </span>
  1051. <span class="md-nav__icon md-icon"></span>
  1052. </label>
  1053. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_6_label" aria-expanded="false">
  1054. <label class="md-nav__title" for="__nav_6">
  1055. <span class="md-nav__icon md-icon"></span>
  1056. Community
  1057. </label>
  1058. <ul class="md-nav__list" data-md-scrollfix>
  1059. <li class="md-nav__item md-nav__item--nested">
  1060. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_1" >
  1061. <label class="md-nav__link" for="__nav_6_1" id="__nav_6_1_label" tabindex="0">
  1062. <span class="md-ellipsis">
  1063. Contributing
  1064. </span>
  1065. <span class="md-nav__icon md-icon"></span>
  1066. </label>
  1067. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_1_label" aria-expanded="false">
  1068. <label class="md-nav__title" for="__nav_6_1">
  1069. <span class="md-nav__icon md-icon"></span>
  1070. Contributing
  1071. </label>
  1072. <ul class="md-nav__list" data-md-scrollfix>
  1073. <li class="md-nav__item">
  1074. <a href="../../contributing/devguide/" class="md-nav__link">
  1075. <span class="md-ellipsis">
  1076. Developer guide
  1077. </span>
  1078. </a>
  1079. </li>
  1080. <li class="md-nav__item">
  1081. <a href="../../contributing/process/" class="md-nav__link">
  1082. <span class="md-ellipsis">
  1083. Contributing Process
  1084. </span>
  1085. </a>
  1086. </li>
  1087. <li class="md-nav__item">
  1088. <a href="../../contributing/release/" class="md-nav__link">
  1089. <span class="md-ellipsis">
  1090. Release Process
  1091. </span>
  1092. </a>
  1093. </li>
  1094. <li class="md-nav__item">
  1095. <a href="../../contributing/coc/" class="md-nav__link">
  1096. <span class="md-ellipsis">
  1097. Code of Conduct
  1098. </span>
  1099. </a>
  1100. </li>
  1101. <li class="md-nav__item">
  1102. <a href="../../contributing/calendar/" class="md-nav__link">
  1103. <span class="md-ellipsis">
  1104. Community meetings calendar
  1105. </span>
  1106. </a>
  1107. </li>
  1108. <li class="md-nav__item">
  1109. <a href="../../contributing/roadmap/" class="md-nav__link">
  1110. <span class="md-ellipsis">
  1111. Roadmap
  1112. </span>
  1113. </a>
  1114. </li>
  1115. <li class="md-nav__item">
  1116. <a href="../../contributing/burnout-mitigation/" class="md-nav__link">
  1117. <span class="md-ellipsis">
  1118. Burnout Prevention
  1119. </span>
  1120. </a>
  1121. </li>
  1122. </ul>
  1123. </nav>
  1124. </li>
  1125. <li class="md-nav__item md-nav__item--nested">
  1126. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_2" >
  1127. <label class="md-nav__link" for="__nav_6_2" id="__nav_6_2_label" tabindex="0">
  1128. <span class="md-ellipsis">
  1129. External Resources
  1130. </span>
  1131. <span class="md-nav__icon md-icon"></span>
  1132. </label>
  1133. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_2_label" aria-expanded="false">
  1134. <label class="md-nav__title" for="__nav_6_2">
  1135. <span class="md-nav__icon md-icon"></span>
  1136. External Resources
  1137. </label>
  1138. <ul class="md-nav__list" data-md-scrollfix>
  1139. <li class="md-nav__item">
  1140. <a href="../../eso-talks/" class="md-nav__link">
  1141. <span class="md-ellipsis">
  1142. Talks
  1143. </span>
  1144. </a>
  1145. </li>
  1146. <li class="md-nav__item">
  1147. <a href="../../eso-demos/" class="md-nav__link">
  1148. <span class="md-ellipsis">
  1149. Demos
  1150. </span>
  1151. </a>
  1152. </li>
  1153. <li class="md-nav__item">
  1154. <a href="../../eso-blogs/" class="md-nav__link">
  1155. <span class="md-ellipsis">
  1156. Blogs
  1157. </span>
  1158. </a>
  1159. </li>
  1160. <li class="md-nav__item">
  1161. <a href="../../eso-tools/" class="md-nav__link">
  1162. <span class="md-ellipsis">
  1163. Tools
  1164. </span>
  1165. </a>
  1166. </li>
  1167. </ul>
  1168. </nav>
  1169. </li>
  1170. </ul>
  1171. </nav>
  1172. </li>
  1173. </ul>
  1174. </nav>
  1175. </div>
  1176. </div>
  1177. </div>
  1178. <div class="md-sidebar md-sidebar--secondary" data-md-component="sidebar" data-md-type="toc" >
  1179. <div class="md-sidebar__scrollwrap">
  1180. <div class="md-sidebar__inner">
  1181. <nav class="md-nav md-nav--secondary" aria-label="Table of contents">
  1182. </nav>
  1183. </div>
  1184. </div>
  1185. </div>
  1186. <div class="md-content" data-md-component="content">
  1187. <article class="md-content__inner md-typeset">
  1188. <h1>API specification</h1>
  1189. <p>Packages:</p>
  1190. <ul>
  1191. <li>
  1192. <a href="#external-secrets.io%2fv1">external-secrets.io/v1</a>
  1193. </li>
  1194. </ul>
  1195. <h2 id="external-secrets.io/v1">external-secrets.io/v1</h2>
  1196. <p>
  1197. <p>Package v1 contains resources for external-secrets</p>
  1198. </p>
  1199. <p>Resource Types:</p>
  1200. <ul></ul>
  1201. <h3 id="external-secrets.io/v1.AWSAuth">AWSAuth
  1202. </h3>
  1203. <p>
  1204. (<em>Appears on:</em>
  1205. <a href="#external-secrets.io/v1.AWSProvider">AWSProvider</a>)
  1206. </p>
  1207. <p>
  1208. <p>AWSAuth tells the controller how to do authentication with aws.
  1209. Only one of secretRef or jwt can be specified.
  1210. if none is specified the controller will load credentials using the aws sdk defaults.</p>
  1211. </p>
  1212. <table>
  1213. <thead>
  1214. <tr>
  1215. <th>Field</th>
  1216. <th>Description</th>
  1217. </tr>
  1218. </thead>
  1219. <tbody>
  1220. <tr>
  1221. <td>
  1222. <code>secretRef</code></br>
  1223. <em>
  1224. <a href="#external-secrets.io/v1.AWSAuthSecretRef">
  1225. AWSAuthSecretRef
  1226. </a>
  1227. </em>
  1228. </td>
  1229. <td>
  1230. <em>(Optional)</em>
  1231. </td>
  1232. </tr>
  1233. <tr>
  1234. <td>
  1235. <code>jwt</code></br>
  1236. <em>
  1237. <a href="#external-secrets.io/v1.AWSJWTAuth">
  1238. AWSJWTAuth
  1239. </a>
  1240. </em>
  1241. </td>
  1242. <td>
  1243. <em>(Optional)</em>
  1244. </td>
  1245. </tr>
  1246. </tbody>
  1247. </table>
  1248. <h3 id="external-secrets.io/v1.AWSAuthSecretRef">AWSAuthSecretRef
  1249. </h3>
  1250. <p>
  1251. (<em>Appears on:</em>
  1252. <a href="#external-secrets.io/v1.AWSAuth">AWSAuth</a>)
  1253. </p>
  1254. <p>
  1255. <p>AWSAuthSecretRef holds secret references for AWS credentials
  1256. both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.</p>
  1257. </p>
  1258. <table>
  1259. <thead>
  1260. <tr>
  1261. <th>Field</th>
  1262. <th>Description</th>
  1263. </tr>
  1264. </thead>
  1265. <tbody>
  1266. <tr>
  1267. <td>
  1268. <code>accessKeyIDSecretRef</code></br>
  1269. <em>
  1270. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1271. External Secrets meta/v1.SecretKeySelector
  1272. </a>
  1273. </em>
  1274. </td>
  1275. <td>
  1276. <p>The AccessKeyID is used for authentication</p>
  1277. </td>
  1278. </tr>
  1279. <tr>
  1280. <td>
  1281. <code>secretAccessKeySecretRef</code></br>
  1282. <em>
  1283. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1284. External Secrets meta/v1.SecretKeySelector
  1285. </a>
  1286. </em>
  1287. </td>
  1288. <td>
  1289. <p>The SecretAccessKey is used for authentication</p>
  1290. </td>
  1291. </tr>
  1292. <tr>
  1293. <td>
  1294. <code>sessionTokenSecretRef</code></br>
  1295. <em>
  1296. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1297. External Secrets meta/v1.SecretKeySelector
  1298. </a>
  1299. </em>
  1300. </td>
  1301. <td>
  1302. <p>The SessionToken used for authentication
  1303. This must be defined if AccessKeyID and SecretAccessKey are temporary credentials
  1304. 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>
  1305. </td>
  1306. </tr>
  1307. </tbody>
  1308. </table>
  1309. <h3 id="external-secrets.io/v1.AWSJWTAuth">AWSJWTAuth
  1310. </h3>
  1311. <p>
  1312. (<em>Appears on:</em>
  1313. <a href="#external-secrets.io/v1.AWSAuth">AWSAuth</a>)
  1314. </p>
  1315. <p>
  1316. <p>Authenticate against AWS using service account tokens.</p>
  1317. </p>
  1318. <table>
  1319. <thead>
  1320. <tr>
  1321. <th>Field</th>
  1322. <th>Description</th>
  1323. </tr>
  1324. </thead>
  1325. <tbody>
  1326. <tr>
  1327. <td>
  1328. <code>serviceAccountRef</code></br>
  1329. <em>
  1330. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  1331. External Secrets meta/v1.ServiceAccountSelector
  1332. </a>
  1333. </em>
  1334. </td>
  1335. <td>
  1336. </td>
  1337. </tr>
  1338. </tbody>
  1339. </table>
  1340. <h3 id="external-secrets.io/v1.AWSProvider">AWSProvider
  1341. </h3>
  1342. <p>
  1343. (<em>Appears on:</em>
  1344. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  1345. </p>
  1346. <p>
  1347. <p>AWSProvider configures a store to sync secrets with AWS.</p>
  1348. </p>
  1349. <table>
  1350. <thead>
  1351. <tr>
  1352. <th>Field</th>
  1353. <th>Description</th>
  1354. </tr>
  1355. </thead>
  1356. <tbody>
  1357. <tr>
  1358. <td>
  1359. <code>service</code></br>
  1360. <em>
  1361. <a href="#external-secrets.io/v1.AWSServiceType">
  1362. AWSServiceType
  1363. </a>
  1364. </em>
  1365. </td>
  1366. <td>
  1367. <p>Service defines which service should be used to fetch the secrets</p>
  1368. </td>
  1369. </tr>
  1370. <tr>
  1371. <td>
  1372. <code>auth</code></br>
  1373. <em>
  1374. <a href="#external-secrets.io/v1.AWSAuth">
  1375. AWSAuth
  1376. </a>
  1377. </em>
  1378. </td>
  1379. <td>
  1380. <em>(Optional)</em>
  1381. <p>Auth defines the information necessary to authenticate against AWS
  1382. if not set aws sdk will infer credentials from your environment
  1383. 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>
  1384. </td>
  1385. </tr>
  1386. <tr>
  1387. <td>
  1388. <code>role</code></br>
  1389. <em>
  1390. string
  1391. </em>
  1392. </td>
  1393. <td>
  1394. <em>(Optional)</em>
  1395. <p>Role is a Role ARN which the provider will assume</p>
  1396. </td>
  1397. </tr>
  1398. <tr>
  1399. <td>
  1400. <code>region</code></br>
  1401. <em>
  1402. string
  1403. </em>
  1404. </td>
  1405. <td>
  1406. <p>AWS Region to be used for the provider</p>
  1407. </td>
  1408. </tr>
  1409. <tr>
  1410. <td>
  1411. <code>additionalRoles</code></br>
  1412. <em>
  1413. []string
  1414. </em>
  1415. </td>
  1416. <td>
  1417. <em>(Optional)</em>
  1418. <p>AdditionalRoles is a chained list of Role ARNs which the provider will sequentially assume before assuming the Role</p>
  1419. </td>
  1420. </tr>
  1421. <tr>
  1422. <td>
  1423. <code>externalID</code></br>
  1424. <em>
  1425. string
  1426. </em>
  1427. </td>
  1428. <td>
  1429. <p>AWS External ID set on assumed IAM roles</p>
  1430. </td>
  1431. </tr>
  1432. <tr>
  1433. <td>
  1434. <code>sessionTags</code></br>
  1435. <em>
  1436. <a href="#external-secrets.io/v1.*github.com/external-secrets/external-secrets/apis/externalsecrets/v1.Tag">
  1437. []*github.com/external-secrets/external-secrets/apis/externalsecrets/v1.Tag
  1438. </a>
  1439. </em>
  1440. </td>
  1441. <td>
  1442. <em>(Optional)</em>
  1443. <p>AWS STS assume role session tags</p>
  1444. </td>
  1445. </tr>
  1446. <tr>
  1447. <td>
  1448. <code>secretsManager</code></br>
  1449. <em>
  1450. <a href="#external-secrets.io/v1.SecretsManager">
  1451. SecretsManager
  1452. </a>
  1453. </em>
  1454. </td>
  1455. <td>
  1456. <em>(Optional)</em>
  1457. <p>SecretsManager defines how the provider behaves when interacting with AWS SecretsManager</p>
  1458. </td>
  1459. </tr>
  1460. <tr>
  1461. <td>
  1462. <code>transitiveTagKeys</code></br>
  1463. <em>
  1464. []string
  1465. </em>
  1466. </td>
  1467. <td>
  1468. <em>(Optional)</em>
  1469. <p>AWS STS assume role transitive session tags. Required when multiple rules are used with the provider</p>
  1470. </td>
  1471. </tr>
  1472. <tr>
  1473. <td>
  1474. <code>prefix</code></br>
  1475. <em>
  1476. string
  1477. </em>
  1478. </td>
  1479. <td>
  1480. <em>(Optional)</em>
  1481. <p>Prefix adds a prefix to all retrieved values.</p>
  1482. </td>
  1483. </tr>
  1484. </tbody>
  1485. </table>
  1486. <h3 id="external-secrets.io/v1.AWSServiceType">AWSServiceType
  1487. (<code>string</code> alias)</p></h3>
  1488. <p>
  1489. (<em>Appears on:</em>
  1490. <a href="#external-secrets.io/v1.AWSProvider">AWSProvider</a>)
  1491. </p>
  1492. <p>
  1493. <p>AWSServiceType is a enum that defines the service/API that is used to fetch the secrets.</p>
  1494. </p>
  1495. <table>
  1496. <thead>
  1497. <tr>
  1498. <th>Value</th>
  1499. <th>Description</th>
  1500. </tr>
  1501. </thead>
  1502. <tbody><tr><td><p>&#34;ParameterStore&#34;</p></td>
  1503. <td><p>AWSServiceParameterStore is the AWS SystemsManager ParameterStore service.
  1504. 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>
  1505. </td>
  1506. </tr><tr><td><p>&#34;SecretsManager&#34;</p></td>
  1507. <td><p>AWSServiceSecretsManager is the AWS SecretsManager service.
  1508. 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>
  1509. </td>
  1510. </tr></tbody>
  1511. </table>
  1512. <h3 id="external-secrets.io/v1.AkeylessAuth">AkeylessAuth
  1513. </h3>
  1514. <p>
  1515. (<em>Appears on:</em>
  1516. <a href="#external-secrets.io/v1.AkeylessProvider">AkeylessProvider</a>)
  1517. </p>
  1518. <p>
  1519. </p>
  1520. <table>
  1521. <thead>
  1522. <tr>
  1523. <th>Field</th>
  1524. <th>Description</th>
  1525. </tr>
  1526. </thead>
  1527. <tbody>
  1528. <tr>
  1529. <td>
  1530. <code>secretRef</code></br>
  1531. <em>
  1532. <a href="#external-secrets.io/v1.AkeylessAuthSecretRef">
  1533. AkeylessAuthSecretRef
  1534. </a>
  1535. </em>
  1536. </td>
  1537. <td>
  1538. <em>(Optional)</em>
  1539. <p>Reference to a Secret that contains the details
  1540. to authenticate with Akeyless.</p>
  1541. </td>
  1542. </tr>
  1543. <tr>
  1544. <td>
  1545. <code>kubernetesAuth</code></br>
  1546. <em>
  1547. <a href="#external-secrets.io/v1.AkeylessKubernetesAuth">
  1548. AkeylessKubernetesAuth
  1549. </a>
  1550. </em>
  1551. </td>
  1552. <td>
  1553. <em>(Optional)</em>
  1554. <p>Kubernetes authenticates with Akeyless by passing the ServiceAccount
  1555. token stored in the named Secret resource.</p>
  1556. </td>
  1557. </tr>
  1558. </tbody>
  1559. </table>
  1560. <h3 id="external-secrets.io/v1.AkeylessAuthSecretRef">AkeylessAuthSecretRef
  1561. </h3>
  1562. <p>
  1563. (<em>Appears on:</em>
  1564. <a href="#external-secrets.io/v1.AkeylessAuth">AkeylessAuth</a>)
  1565. </p>
  1566. <p>
  1567. <p>AkeylessAuthSecretRef
  1568. AKEYLESS_ACCESS_TYPE_PARAM: AZURE_OBJ_ID OR GCP_AUDIENCE OR ACCESS_KEY OR KUB_CONFIG_NAME.</p>
  1569. </p>
  1570. <table>
  1571. <thead>
  1572. <tr>
  1573. <th>Field</th>
  1574. <th>Description</th>
  1575. </tr>
  1576. </thead>
  1577. <tbody>
  1578. <tr>
  1579. <td>
  1580. <code>accessID</code></br>
  1581. <em>
  1582. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1583. External Secrets meta/v1.SecretKeySelector
  1584. </a>
  1585. </em>
  1586. </td>
  1587. <td>
  1588. <p>The SecretAccessID is used for authentication</p>
  1589. </td>
  1590. </tr>
  1591. <tr>
  1592. <td>
  1593. <code>accessType</code></br>
  1594. <em>
  1595. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1596. External Secrets meta/v1.SecretKeySelector
  1597. </a>
  1598. </em>
  1599. </td>
  1600. <td>
  1601. </td>
  1602. </tr>
  1603. <tr>
  1604. <td>
  1605. <code>accessTypeParam</code></br>
  1606. <em>
  1607. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1608. External Secrets meta/v1.SecretKeySelector
  1609. </a>
  1610. </em>
  1611. </td>
  1612. <td>
  1613. </td>
  1614. </tr>
  1615. </tbody>
  1616. </table>
  1617. <h3 id="external-secrets.io/v1.AkeylessKubernetesAuth">AkeylessKubernetesAuth
  1618. </h3>
  1619. <p>
  1620. (<em>Appears on:</em>
  1621. <a href="#external-secrets.io/v1.AkeylessAuth">AkeylessAuth</a>)
  1622. </p>
  1623. <p>
  1624. <p>Authenticate with Kubernetes ServiceAccount token stored.</p>
  1625. </p>
  1626. <table>
  1627. <thead>
  1628. <tr>
  1629. <th>Field</th>
  1630. <th>Description</th>
  1631. </tr>
  1632. </thead>
  1633. <tbody>
  1634. <tr>
  1635. <td>
  1636. <code>accessID</code></br>
  1637. <em>
  1638. string
  1639. </em>
  1640. </td>
  1641. <td>
  1642. <p>the Akeyless Kubernetes auth-method access-id</p>
  1643. </td>
  1644. </tr>
  1645. <tr>
  1646. <td>
  1647. <code>k8sConfName</code></br>
  1648. <em>
  1649. string
  1650. </em>
  1651. </td>
  1652. <td>
  1653. <p>Kubernetes-auth configuration name in Akeyless-Gateway</p>
  1654. </td>
  1655. </tr>
  1656. <tr>
  1657. <td>
  1658. <code>serviceAccountRef</code></br>
  1659. <em>
  1660. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  1661. External Secrets meta/v1.ServiceAccountSelector
  1662. </a>
  1663. </em>
  1664. </td>
  1665. <td>
  1666. <em>(Optional)</em>
  1667. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  1668. If the service account is specified, the service account secret token JWT will be used
  1669. for authenticating with Akeyless. If the service account selector is not supplied,
  1670. the secretRef will be used instead.</p>
  1671. </td>
  1672. </tr>
  1673. <tr>
  1674. <td>
  1675. <code>secretRef</code></br>
  1676. <em>
  1677. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1678. External Secrets meta/v1.SecretKeySelector
  1679. </a>
  1680. </em>
  1681. </td>
  1682. <td>
  1683. <em>(Optional)</em>
  1684. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  1685. for authenticating with Akeyless. If a name is specified without a key,
  1686. <code>token</code> is the default. If one is not specified, the one bound to
  1687. the controller will be used.</p>
  1688. </td>
  1689. </tr>
  1690. </tbody>
  1691. </table>
  1692. <h3 id="external-secrets.io/v1.AkeylessProvider">AkeylessProvider
  1693. </h3>
  1694. <p>
  1695. (<em>Appears on:</em>
  1696. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  1697. </p>
  1698. <p>
  1699. <p>AkeylessProvider Configures an store to sync secrets using Akeyless KV.</p>
  1700. </p>
  1701. <table>
  1702. <thead>
  1703. <tr>
  1704. <th>Field</th>
  1705. <th>Description</th>
  1706. </tr>
  1707. </thead>
  1708. <tbody>
  1709. <tr>
  1710. <td>
  1711. <code>akeylessGWApiURL</code></br>
  1712. <em>
  1713. string
  1714. </em>
  1715. </td>
  1716. <td>
  1717. <p>Akeyless GW API Url from which the secrets to be fetched from.</p>
  1718. </td>
  1719. </tr>
  1720. <tr>
  1721. <td>
  1722. <code>authSecretRef</code></br>
  1723. <em>
  1724. <a href="#external-secrets.io/v1.AkeylessAuth">
  1725. AkeylessAuth
  1726. </a>
  1727. </em>
  1728. </td>
  1729. <td>
  1730. <p>Auth configures how the operator authenticates with Akeyless.</p>
  1731. </td>
  1732. </tr>
  1733. <tr>
  1734. <td>
  1735. <code>caBundle</code></br>
  1736. <em>
  1737. []byte
  1738. </em>
  1739. </td>
  1740. <td>
  1741. <em>(Optional)</em>
  1742. <p>PEM/base64 encoded CA bundle used to validate Akeyless Gateway certificate. Only used
  1743. if the AkeylessGWApiURL URL is using HTTPS protocol. If not set the system root certificates
  1744. are used to validate the TLS connection.</p>
  1745. </td>
  1746. </tr>
  1747. <tr>
  1748. <td>
  1749. <code>caProvider</code></br>
  1750. <em>
  1751. <a href="#external-secrets.io/v1.CAProvider">
  1752. CAProvider
  1753. </a>
  1754. </em>
  1755. </td>
  1756. <td>
  1757. <em>(Optional)</em>
  1758. <p>The provider for the CA bundle to use to validate Akeyless Gateway certificate.</p>
  1759. </td>
  1760. </tr>
  1761. </tbody>
  1762. </table>
  1763. <h3 id="external-secrets.io/v1.AlibabaAuth">AlibabaAuth
  1764. </h3>
  1765. <p>
  1766. (<em>Appears on:</em>
  1767. <a href="#external-secrets.io/v1.AlibabaProvider">AlibabaProvider</a>)
  1768. </p>
  1769. <p>
  1770. <p>AlibabaAuth contains a secretRef for credentials.</p>
  1771. </p>
  1772. <table>
  1773. <thead>
  1774. <tr>
  1775. <th>Field</th>
  1776. <th>Description</th>
  1777. </tr>
  1778. </thead>
  1779. <tbody>
  1780. <tr>
  1781. <td>
  1782. <code>secretRef</code></br>
  1783. <em>
  1784. <a href="#external-secrets.io/v1.AlibabaAuthSecretRef">
  1785. AlibabaAuthSecretRef
  1786. </a>
  1787. </em>
  1788. </td>
  1789. <td>
  1790. <em>(Optional)</em>
  1791. </td>
  1792. </tr>
  1793. <tr>
  1794. <td>
  1795. <code>rrsa</code></br>
  1796. <em>
  1797. <a href="#external-secrets.io/v1.AlibabaRRSAAuth">
  1798. AlibabaRRSAAuth
  1799. </a>
  1800. </em>
  1801. </td>
  1802. <td>
  1803. <em>(Optional)</em>
  1804. </td>
  1805. </tr>
  1806. </tbody>
  1807. </table>
  1808. <h3 id="external-secrets.io/v1.AlibabaAuthSecretRef">AlibabaAuthSecretRef
  1809. </h3>
  1810. <p>
  1811. (<em>Appears on:</em>
  1812. <a href="#external-secrets.io/v1.AlibabaAuth">AlibabaAuth</a>)
  1813. </p>
  1814. <p>
  1815. <p>AlibabaAuthSecretRef holds secret references for Alibaba credentials.</p>
  1816. </p>
  1817. <table>
  1818. <thead>
  1819. <tr>
  1820. <th>Field</th>
  1821. <th>Description</th>
  1822. </tr>
  1823. </thead>
  1824. <tbody>
  1825. <tr>
  1826. <td>
  1827. <code>accessKeyIDSecretRef</code></br>
  1828. <em>
  1829. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1830. External Secrets meta/v1.SecretKeySelector
  1831. </a>
  1832. </em>
  1833. </td>
  1834. <td>
  1835. <p>The AccessKeyID is used for authentication</p>
  1836. </td>
  1837. </tr>
  1838. <tr>
  1839. <td>
  1840. <code>accessKeySecretSecretRef</code></br>
  1841. <em>
  1842. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1843. External Secrets meta/v1.SecretKeySelector
  1844. </a>
  1845. </em>
  1846. </td>
  1847. <td>
  1848. <p>The AccessKeySecret is used for authentication</p>
  1849. </td>
  1850. </tr>
  1851. </tbody>
  1852. </table>
  1853. <h3 id="external-secrets.io/v1.AlibabaProvider">AlibabaProvider
  1854. </h3>
  1855. <p>
  1856. (<em>Appears on:</em>
  1857. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  1858. </p>
  1859. <p>
  1860. <p>AlibabaProvider configures a store to sync secrets using the Alibaba Secret Manager provider.</p>
  1861. </p>
  1862. <table>
  1863. <thead>
  1864. <tr>
  1865. <th>Field</th>
  1866. <th>Description</th>
  1867. </tr>
  1868. </thead>
  1869. <tbody>
  1870. <tr>
  1871. <td>
  1872. <code>auth</code></br>
  1873. <em>
  1874. <a href="#external-secrets.io/v1.AlibabaAuth">
  1875. AlibabaAuth
  1876. </a>
  1877. </em>
  1878. </td>
  1879. <td>
  1880. </td>
  1881. </tr>
  1882. <tr>
  1883. <td>
  1884. <code>regionID</code></br>
  1885. <em>
  1886. string
  1887. </em>
  1888. </td>
  1889. <td>
  1890. <p>Alibaba Region to be used for the provider</p>
  1891. </td>
  1892. </tr>
  1893. </tbody>
  1894. </table>
  1895. <h3 id="external-secrets.io/v1.AlibabaRRSAAuth">AlibabaRRSAAuth
  1896. </h3>
  1897. <p>
  1898. (<em>Appears on:</em>
  1899. <a href="#external-secrets.io/v1.AlibabaAuth">AlibabaAuth</a>)
  1900. </p>
  1901. <p>
  1902. <p>Authenticate against Alibaba using RRSA.</p>
  1903. </p>
  1904. <table>
  1905. <thead>
  1906. <tr>
  1907. <th>Field</th>
  1908. <th>Description</th>
  1909. </tr>
  1910. </thead>
  1911. <tbody>
  1912. <tr>
  1913. <td>
  1914. <code>oidcProviderArn</code></br>
  1915. <em>
  1916. string
  1917. </em>
  1918. </td>
  1919. <td>
  1920. </td>
  1921. </tr>
  1922. <tr>
  1923. <td>
  1924. <code>oidcTokenFilePath</code></br>
  1925. <em>
  1926. string
  1927. </em>
  1928. </td>
  1929. <td>
  1930. </td>
  1931. </tr>
  1932. <tr>
  1933. <td>
  1934. <code>roleArn</code></br>
  1935. <em>
  1936. string
  1937. </em>
  1938. </td>
  1939. <td>
  1940. </td>
  1941. </tr>
  1942. <tr>
  1943. <td>
  1944. <code>sessionName</code></br>
  1945. <em>
  1946. string
  1947. </em>
  1948. </td>
  1949. <td>
  1950. </td>
  1951. </tr>
  1952. </tbody>
  1953. </table>
  1954. <h3 id="external-secrets.io/v1.AuthorizationProtocol">AuthorizationProtocol
  1955. </h3>
  1956. <p>
  1957. (<em>Appears on:</em>
  1958. <a href="#external-secrets.io/v1.WebhookProvider">WebhookProvider</a>)
  1959. </p>
  1960. <p>
  1961. <p>AuthorizationProtocol contains the protocol-specific configuration</p>
  1962. </p>
  1963. <table>
  1964. <thead>
  1965. <tr>
  1966. <th>Field</th>
  1967. <th>Description</th>
  1968. </tr>
  1969. </thead>
  1970. <tbody>
  1971. <tr>
  1972. <td>
  1973. <code>ntlm</code></br>
  1974. <em>
  1975. <a href="#external-secrets.io/v1.NTLMProtocol">
  1976. NTLMProtocol
  1977. </a>
  1978. </em>
  1979. </td>
  1980. <td>
  1981. <em>(Optional)</em>
  1982. <p>NTLMProtocol configures the store to use NTLM for auth</p>
  1983. </td>
  1984. </tr>
  1985. </tbody>
  1986. </table>
  1987. <h3 id="external-secrets.io/v1.AwsAuthCredentials">AwsAuthCredentials
  1988. </h3>
  1989. <p>
  1990. (<em>Appears on:</em>
  1991. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  1992. </p>
  1993. <p>
  1994. </p>
  1995. <table>
  1996. <thead>
  1997. <tr>
  1998. <th>Field</th>
  1999. <th>Description</th>
  2000. </tr>
  2001. </thead>
  2002. <tbody>
  2003. <tr>
  2004. <td>
  2005. <code>identityId</code></br>
  2006. <em>
  2007. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2008. External Secrets meta/v1.SecretKeySelector
  2009. </a>
  2010. </em>
  2011. </td>
  2012. <td>
  2013. </td>
  2014. </tr>
  2015. </tbody>
  2016. </table>
  2017. <h3 id="external-secrets.io/v1.AwsCredentialsConfig">AwsCredentialsConfig
  2018. </h3>
  2019. <p>
  2020. (<em>Appears on:</em>
  2021. <a href="#external-secrets.io/v1.GCPWorkloadIdentityFederation">GCPWorkloadIdentityFederation</a>)
  2022. </p>
  2023. <p>
  2024. <p>AwsCredentialsConfig holds the region and the Secret reference which contains the AWS credentials.</p>
  2025. </p>
  2026. <table>
  2027. <thead>
  2028. <tr>
  2029. <th>Field</th>
  2030. <th>Description</th>
  2031. </tr>
  2032. </thead>
  2033. <tbody>
  2034. <tr>
  2035. <td>
  2036. <code>region</code></br>
  2037. <em>
  2038. string
  2039. </em>
  2040. </td>
  2041. <td>
  2042. <p>region is for configuring the AWS region to be used.</p>
  2043. </td>
  2044. </tr>
  2045. <tr>
  2046. <td>
  2047. <code>awsCredentialsSecretRef</code></br>
  2048. <em>
  2049. <a href="#external-secrets.io/v1.SecretReference">
  2050. SecretReference
  2051. </a>
  2052. </em>
  2053. </td>
  2054. <td>
  2055. <p>awsCredentialsSecretRef is the reference to the secret which holds the AWS credentials.
  2056. Secret should be created with below names for keys
  2057. - aws_access_key_id: Access Key ID, which is the unique identifier for the AWS account or the IAM user.
  2058. - aws_secret_access_key: Secret Access Key, which is used to authenticate requests made to AWS services.
  2059. - aws_session_token: Session Token, is the short-lived token to authenticate requests made to AWS services.</p>
  2060. </td>
  2061. </tr>
  2062. </tbody>
  2063. </table>
  2064. <h3 id="external-secrets.io/v1.AzureAuthCredentials">AzureAuthCredentials
  2065. </h3>
  2066. <p>
  2067. (<em>Appears on:</em>
  2068. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  2069. </p>
  2070. <p>
  2071. </p>
  2072. <table>
  2073. <thead>
  2074. <tr>
  2075. <th>Field</th>
  2076. <th>Description</th>
  2077. </tr>
  2078. </thead>
  2079. <tbody>
  2080. <tr>
  2081. <td>
  2082. <code>identityId</code></br>
  2083. <em>
  2084. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2085. External Secrets meta/v1.SecretKeySelector
  2086. </a>
  2087. </em>
  2088. </td>
  2089. <td>
  2090. </td>
  2091. </tr>
  2092. <tr>
  2093. <td>
  2094. <code>resource</code></br>
  2095. <em>
  2096. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2097. External Secrets meta/v1.SecretKeySelector
  2098. </a>
  2099. </em>
  2100. </td>
  2101. <td>
  2102. <em>(Optional)</em>
  2103. </td>
  2104. </tr>
  2105. </tbody>
  2106. </table>
  2107. <h3 id="external-secrets.io/v1.AzureAuthType">AzureAuthType
  2108. (<code>string</code> alias)</p></h3>
  2109. <p>
  2110. (<em>Appears on:</em>
  2111. <a href="#external-secrets.io/v1.AzureKVProvider">AzureKVProvider</a>)
  2112. </p>
  2113. <p>
  2114. <p>AuthType describes how to authenticate to the Azure Keyvault
  2115. Only one of the following auth types may be specified.
  2116. If none of the following auth type is specified, the default one
  2117. is ServicePrincipal.</p>
  2118. </p>
  2119. <table>
  2120. <thead>
  2121. <tr>
  2122. <th>Value</th>
  2123. <th>Description</th>
  2124. </tr>
  2125. </thead>
  2126. <tbody><tr><td><p>&#34;ManagedIdentity&#34;</p></td>
  2127. <td><p>Using Managed Identity to authenticate. Used with aad-pod-identity installed in the cluster.</p>
  2128. </td>
  2129. </tr><tr><td><p>&#34;ServicePrincipal&#34;</p></td>
  2130. <td><p>Using service principal to authenticate, which needs a tenantId, a clientId and a clientSecret.</p>
  2131. </td>
  2132. </tr><tr><td><p>&#34;WorkloadIdentity&#34;</p></td>
  2133. <td><p>Using Workload Identity service accounts to authenticate.</p>
  2134. </td>
  2135. </tr></tbody>
  2136. </table>
  2137. <h3 id="external-secrets.io/v1.AzureCustomCloudConfig">AzureCustomCloudConfig
  2138. </h3>
  2139. <p>
  2140. (<em>Appears on:</em>
  2141. <a href="#external-secrets.io/v1.AzureKVProvider">AzureKVProvider</a>)
  2142. </p>
  2143. <p>
  2144. <p>AzureCustomCloudConfig specifies custom cloud configuration for private Azure environments
  2145. IMPORTANT: Custom cloud configuration is ONLY supported when UseAzureSDK is true.
  2146. The legacy go-autorest SDK does not support custom cloud endpoints.</p>
  2147. </p>
  2148. <table>
  2149. <thead>
  2150. <tr>
  2151. <th>Field</th>
  2152. <th>Description</th>
  2153. </tr>
  2154. </thead>
  2155. <tbody>
  2156. <tr>
  2157. <td>
  2158. <code>activeDirectoryEndpoint</code></br>
  2159. <em>
  2160. string
  2161. </em>
  2162. </td>
  2163. <td>
  2164. <p>ActiveDirectoryEndpoint is the AAD endpoint for authentication
  2165. Required when using custom cloud configuration</p>
  2166. </td>
  2167. </tr>
  2168. <tr>
  2169. <td>
  2170. <code>keyVaultEndpoint</code></br>
  2171. <em>
  2172. string
  2173. </em>
  2174. </td>
  2175. <td>
  2176. <em>(Optional)</em>
  2177. <p>KeyVaultEndpoint is the Key Vault service endpoint</p>
  2178. </td>
  2179. </tr>
  2180. <tr>
  2181. <td>
  2182. <code>keyVaultDNSSuffix</code></br>
  2183. <em>
  2184. string
  2185. </em>
  2186. </td>
  2187. <td>
  2188. <em>(Optional)</em>
  2189. <p>KeyVaultDNSSuffix is the DNS suffix for Key Vault URLs</p>
  2190. </td>
  2191. </tr>
  2192. <tr>
  2193. <td>
  2194. <code>resourceManagerEndpoint</code></br>
  2195. <em>
  2196. string
  2197. </em>
  2198. </td>
  2199. <td>
  2200. <em>(Optional)</em>
  2201. <p>ResourceManagerEndpoint is the Azure Resource Manager endpoint</p>
  2202. </td>
  2203. </tr>
  2204. </tbody>
  2205. </table>
  2206. <h3 id="external-secrets.io/v1.AzureEnvironmentType">AzureEnvironmentType
  2207. (<code>string</code> alias)</p></h3>
  2208. <p>
  2209. (<em>Appears on:</em>
  2210. <a href="#external-secrets.io/v1.AzureKVProvider">AzureKVProvider</a>)
  2211. </p>
  2212. <p>
  2213. <p>AzureEnvironmentType specifies the Azure cloud environment endpoints to use for
  2214. connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint.
  2215. 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>
  2216. PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud, AzureStackCloud</p>
  2217. </p>
  2218. <table>
  2219. <thead>
  2220. <tr>
  2221. <th>Value</th>
  2222. <th>Description</th>
  2223. </tr>
  2224. </thead>
  2225. <tbody><tr><td><p>&#34;AzureStackCloud&#34;</p></td>
  2226. <td></td>
  2227. </tr><tr><td><p>&#34;ChinaCloud&#34;</p></td>
  2228. <td></td>
  2229. </tr><tr><td><p>&#34;GermanCloud&#34;</p></td>
  2230. <td></td>
  2231. </tr><tr><td><p>&#34;PublicCloud&#34;</p></td>
  2232. <td></td>
  2233. </tr><tr><td><p>&#34;USGovernmentCloud&#34;</p></td>
  2234. <td></td>
  2235. </tr></tbody>
  2236. </table>
  2237. <h3 id="external-secrets.io/v1.AzureKVAuth">AzureKVAuth
  2238. </h3>
  2239. <p>
  2240. (<em>Appears on:</em>
  2241. <a href="#external-secrets.io/v1.AzureKVProvider">AzureKVProvider</a>)
  2242. </p>
  2243. <p>
  2244. <p>Configuration used to authenticate with Azure.</p>
  2245. </p>
  2246. <table>
  2247. <thead>
  2248. <tr>
  2249. <th>Field</th>
  2250. <th>Description</th>
  2251. </tr>
  2252. </thead>
  2253. <tbody>
  2254. <tr>
  2255. <td>
  2256. <code>clientId</code></br>
  2257. <em>
  2258. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2259. External Secrets meta/v1.SecretKeySelector
  2260. </a>
  2261. </em>
  2262. </td>
  2263. <td>
  2264. <em>(Optional)</em>
  2265. <p>The Azure clientId of the service principle or managed identity used for authentication.</p>
  2266. </td>
  2267. </tr>
  2268. <tr>
  2269. <td>
  2270. <code>tenantId</code></br>
  2271. <em>
  2272. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2273. External Secrets meta/v1.SecretKeySelector
  2274. </a>
  2275. </em>
  2276. </td>
  2277. <td>
  2278. <em>(Optional)</em>
  2279. <p>The Azure tenantId of the managed identity used for authentication.</p>
  2280. </td>
  2281. </tr>
  2282. <tr>
  2283. <td>
  2284. <code>clientSecret</code></br>
  2285. <em>
  2286. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2287. External Secrets meta/v1.SecretKeySelector
  2288. </a>
  2289. </em>
  2290. </td>
  2291. <td>
  2292. <em>(Optional)</em>
  2293. <p>The Azure ClientSecret of the service principle used for authentication.</p>
  2294. </td>
  2295. </tr>
  2296. <tr>
  2297. <td>
  2298. <code>clientCertificate</code></br>
  2299. <em>
  2300. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2301. External Secrets meta/v1.SecretKeySelector
  2302. </a>
  2303. </em>
  2304. </td>
  2305. <td>
  2306. <em>(Optional)</em>
  2307. <p>The Azure ClientCertificate of the service principle used for authentication.</p>
  2308. </td>
  2309. </tr>
  2310. </tbody>
  2311. </table>
  2312. <h3 id="external-secrets.io/v1.AzureKVProvider">AzureKVProvider
  2313. </h3>
  2314. <p>
  2315. (<em>Appears on:</em>
  2316. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  2317. </p>
  2318. <p>
  2319. <p>Configures an store to sync secrets using Azure KV.</p>
  2320. </p>
  2321. <table>
  2322. <thead>
  2323. <tr>
  2324. <th>Field</th>
  2325. <th>Description</th>
  2326. </tr>
  2327. </thead>
  2328. <tbody>
  2329. <tr>
  2330. <td>
  2331. <code>authType</code></br>
  2332. <em>
  2333. <a href="#external-secrets.io/v1.AzureAuthType">
  2334. AzureAuthType
  2335. </a>
  2336. </em>
  2337. </td>
  2338. <td>
  2339. <em>(Optional)</em>
  2340. <p>Auth type defines how to authenticate to the keyvault service.
  2341. Valid values are:
  2342. - &ldquo;ServicePrincipal&rdquo; (default): Using a service principal (tenantId, clientId, clientSecret)
  2343. - &ldquo;ManagedIdentity&rdquo;: Using Managed Identity assigned to the pod (see aad-pod-identity)</p>
  2344. </td>
  2345. </tr>
  2346. <tr>
  2347. <td>
  2348. <code>vaultUrl</code></br>
  2349. <em>
  2350. string
  2351. </em>
  2352. </td>
  2353. <td>
  2354. <p>Vault Url from which the secrets to be fetched from.</p>
  2355. </td>
  2356. </tr>
  2357. <tr>
  2358. <td>
  2359. <code>tenantId</code></br>
  2360. <em>
  2361. string
  2362. </em>
  2363. </td>
  2364. <td>
  2365. <em>(Optional)</em>
  2366. <p>TenantID configures the Azure Tenant to send requests to. Required for ServicePrincipal auth type. Optional for WorkloadIdentity.</p>
  2367. </td>
  2368. </tr>
  2369. <tr>
  2370. <td>
  2371. <code>environmentType</code></br>
  2372. <em>
  2373. <a href="#external-secrets.io/v1.AzureEnvironmentType">
  2374. AzureEnvironmentType
  2375. </a>
  2376. </em>
  2377. </td>
  2378. <td>
  2379. <p>EnvironmentType specifies the Azure cloud environment endpoints to use for
  2380. connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint.
  2381. 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>
  2382. PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud, AzureStackCloud
  2383. Use AzureStackCloud when you need to configure custom Azure Stack Hub or Azure Stack Edge endpoints.</p>
  2384. </td>
  2385. </tr>
  2386. <tr>
  2387. <td>
  2388. <code>authSecretRef</code></br>
  2389. <em>
  2390. <a href="#external-secrets.io/v1.AzureKVAuth">
  2391. AzureKVAuth
  2392. </a>
  2393. </em>
  2394. </td>
  2395. <td>
  2396. <em>(Optional)</em>
  2397. <p>Auth configures how the operator authenticates with Azure. Required for ServicePrincipal auth type. Optional for WorkloadIdentity.</p>
  2398. </td>
  2399. </tr>
  2400. <tr>
  2401. <td>
  2402. <code>serviceAccountRef</code></br>
  2403. <em>
  2404. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  2405. External Secrets meta/v1.ServiceAccountSelector
  2406. </a>
  2407. </em>
  2408. </td>
  2409. <td>
  2410. <em>(Optional)</em>
  2411. <p>ServiceAccountRef specified the service account
  2412. that should be used when authenticating with WorkloadIdentity.</p>
  2413. </td>
  2414. </tr>
  2415. <tr>
  2416. <td>
  2417. <code>identityId</code></br>
  2418. <em>
  2419. string
  2420. </em>
  2421. </td>
  2422. <td>
  2423. <em>(Optional)</em>
  2424. <p>If multiple Managed Identity is assigned to the pod, you can select the one to be used</p>
  2425. </td>
  2426. </tr>
  2427. <tr>
  2428. <td>
  2429. <code>useAzureSDK</code></br>
  2430. <em>
  2431. bool
  2432. </em>
  2433. </td>
  2434. <td>
  2435. <em>(Optional)</em>
  2436. <p>UseAzureSDK enables the use of the new Azure SDK for Go (azcore-based) instead of the legacy go-autorest SDK.
  2437. This is experimental and may have behavioral differences. Defaults to false (legacy SDK).</p>
  2438. </td>
  2439. </tr>
  2440. <tr>
  2441. <td>
  2442. <code>customCloudConfig</code></br>
  2443. <em>
  2444. <a href="#external-secrets.io/v1.AzureCustomCloudConfig">
  2445. AzureCustomCloudConfig
  2446. </a>
  2447. </em>
  2448. </td>
  2449. <td>
  2450. <em>(Optional)</em>
  2451. <p>CustomCloudConfig defines custom Azure Stack Hub or Azure Stack Edge endpoints.
  2452. Required when EnvironmentType is AzureStackCloud.
  2453. IMPORTANT: This feature REQUIRES UseAzureSDK to be set to true. Custom cloud
  2454. configuration is not supported with the legacy go-autorest SDK.</p>
  2455. </td>
  2456. </tr>
  2457. </tbody>
  2458. </table>
  2459. <h3 id="external-secrets.io/v1.BeyondTrustProviderSecretRef">BeyondTrustProviderSecretRef
  2460. </h3>
  2461. <p>
  2462. (<em>Appears on:</em>
  2463. <a href="#external-secrets.io/v1.BeyondtrustAuth">BeyondtrustAuth</a>)
  2464. </p>
  2465. <p>
  2466. </p>
  2467. <table>
  2468. <thead>
  2469. <tr>
  2470. <th>Field</th>
  2471. <th>Description</th>
  2472. </tr>
  2473. </thead>
  2474. <tbody>
  2475. <tr>
  2476. <td>
  2477. <code>value</code></br>
  2478. <em>
  2479. string
  2480. </em>
  2481. </td>
  2482. <td>
  2483. <em>(Optional)</em>
  2484. <p>Value can be specified directly to set a value without using a secret.</p>
  2485. </td>
  2486. </tr>
  2487. <tr>
  2488. <td>
  2489. <code>secretRef</code></br>
  2490. <em>
  2491. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2492. External Secrets meta/v1.SecretKeySelector
  2493. </a>
  2494. </em>
  2495. </td>
  2496. <td>
  2497. <em>(Optional)</em>
  2498. <p>SecretRef references a key in a secret that will be used as value.</p>
  2499. </td>
  2500. </tr>
  2501. </tbody>
  2502. </table>
  2503. <h3 id="external-secrets.io/v1.BeyondtrustAuth">BeyondtrustAuth
  2504. </h3>
  2505. <p>
  2506. (<em>Appears on:</em>
  2507. <a href="#external-secrets.io/v1.BeyondtrustProvider">BeyondtrustProvider</a>)
  2508. </p>
  2509. <p>
  2510. <p>Configures a store to sync secrets using BeyondTrust Password Safe.</p>
  2511. </p>
  2512. <table>
  2513. <thead>
  2514. <tr>
  2515. <th>Field</th>
  2516. <th>Description</th>
  2517. </tr>
  2518. </thead>
  2519. <tbody>
  2520. <tr>
  2521. <td>
  2522. <code>apiKey</code></br>
  2523. <em>
  2524. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2525. BeyondTrustProviderSecretRef
  2526. </a>
  2527. </em>
  2528. </td>
  2529. <td>
  2530. <p>APIKey If not provided then ClientID/ClientSecret become required.</p>
  2531. </td>
  2532. </tr>
  2533. <tr>
  2534. <td>
  2535. <code>clientId</code></br>
  2536. <em>
  2537. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2538. BeyondTrustProviderSecretRef
  2539. </a>
  2540. </em>
  2541. </td>
  2542. <td>
  2543. <p>ClientID is the API OAuth Client ID.</p>
  2544. </td>
  2545. </tr>
  2546. <tr>
  2547. <td>
  2548. <code>clientSecret</code></br>
  2549. <em>
  2550. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2551. BeyondTrustProviderSecretRef
  2552. </a>
  2553. </em>
  2554. </td>
  2555. <td>
  2556. <p>ClientSecret is the API OAuth Client Secret.</p>
  2557. </td>
  2558. </tr>
  2559. <tr>
  2560. <td>
  2561. <code>certificate</code></br>
  2562. <em>
  2563. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2564. BeyondTrustProviderSecretRef
  2565. </a>
  2566. </em>
  2567. </td>
  2568. <td>
  2569. <p>Certificate (cert.pem) for use when authenticating with an OAuth client Id using a Client Certificate.</p>
  2570. </td>
  2571. </tr>
  2572. <tr>
  2573. <td>
  2574. <code>certificateKey</code></br>
  2575. <em>
  2576. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2577. BeyondTrustProviderSecretRef
  2578. </a>
  2579. </em>
  2580. </td>
  2581. <td>
  2582. <p>Certificate private key (key.pem). For use when authenticating with an OAuth client Id</p>
  2583. </td>
  2584. </tr>
  2585. </tbody>
  2586. </table>
  2587. <h3 id="external-secrets.io/v1.BeyondtrustProvider">BeyondtrustProvider
  2588. </h3>
  2589. <p>
  2590. (<em>Appears on:</em>
  2591. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  2592. </p>
  2593. <p>
  2594. </p>
  2595. <table>
  2596. <thead>
  2597. <tr>
  2598. <th>Field</th>
  2599. <th>Description</th>
  2600. </tr>
  2601. </thead>
  2602. <tbody>
  2603. <tr>
  2604. <td>
  2605. <code>auth</code></br>
  2606. <em>
  2607. <a href="#external-secrets.io/v1.BeyondtrustAuth">
  2608. BeyondtrustAuth
  2609. </a>
  2610. </em>
  2611. </td>
  2612. <td>
  2613. <p>Auth configures how the operator authenticates with Beyondtrust.</p>
  2614. </td>
  2615. </tr>
  2616. <tr>
  2617. <td>
  2618. <code>server</code></br>
  2619. <em>
  2620. <a href="#external-secrets.io/v1.BeyondtrustServer">
  2621. BeyondtrustServer
  2622. </a>
  2623. </em>
  2624. </td>
  2625. <td>
  2626. <p>Auth configures how API server works.</p>
  2627. </td>
  2628. </tr>
  2629. </tbody>
  2630. </table>
  2631. <h3 id="external-secrets.io/v1.BeyondtrustServer">BeyondtrustServer
  2632. </h3>
  2633. <p>
  2634. (<em>Appears on:</em>
  2635. <a href="#external-secrets.io/v1.BeyondtrustProvider">BeyondtrustProvider</a>)
  2636. </p>
  2637. <p>
  2638. <p>Configures a store to sync secrets using BeyondTrust Password Safe.</p>
  2639. </p>
  2640. <table>
  2641. <thead>
  2642. <tr>
  2643. <th>Field</th>
  2644. <th>Description</th>
  2645. </tr>
  2646. </thead>
  2647. <tbody>
  2648. <tr>
  2649. <td>
  2650. <code>apiUrl</code></br>
  2651. <em>
  2652. string
  2653. </em>
  2654. </td>
  2655. <td>
  2656. </td>
  2657. </tr>
  2658. <tr>
  2659. <td>
  2660. <code>apiVersion</code></br>
  2661. <em>
  2662. string
  2663. </em>
  2664. </td>
  2665. <td>
  2666. </td>
  2667. </tr>
  2668. <tr>
  2669. <td>
  2670. <code>retrievalType</code></br>
  2671. <em>
  2672. string
  2673. </em>
  2674. </td>
  2675. <td>
  2676. <p>The secret retrieval type. SECRET = Secrets Safe (credential, text, file). MANAGED_ACCOUNT = Password Safe account associated with a system.</p>
  2677. </td>
  2678. </tr>
  2679. <tr>
  2680. <td>
  2681. <code>separator</code></br>
  2682. <em>
  2683. string
  2684. </em>
  2685. </td>
  2686. <td>
  2687. <p>A character that separates the folder names.</p>
  2688. </td>
  2689. </tr>
  2690. <tr>
  2691. <td>
  2692. <code>verifyCA</code></br>
  2693. <em>
  2694. bool
  2695. </em>
  2696. </td>
  2697. <td>
  2698. </td>
  2699. </tr>
  2700. <tr>
  2701. <td>
  2702. <code>clientTimeOutSeconds</code></br>
  2703. <em>
  2704. int
  2705. </em>
  2706. </td>
  2707. <td>
  2708. <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>
  2709. </td>
  2710. </tr>
  2711. </tbody>
  2712. </table>
  2713. <h3 id="external-secrets.io/v1.BitwardenSecretsManagerAuth">BitwardenSecretsManagerAuth
  2714. </h3>
  2715. <p>
  2716. (<em>Appears on:</em>
  2717. <a href="#external-secrets.io/v1.BitwardenSecretsManagerProvider">BitwardenSecretsManagerProvider</a>)
  2718. </p>
  2719. <p>
  2720. <p>BitwardenSecretsManagerAuth contains the ref to the secret that contains the machine account token.</p>
  2721. </p>
  2722. <table>
  2723. <thead>
  2724. <tr>
  2725. <th>Field</th>
  2726. <th>Description</th>
  2727. </tr>
  2728. </thead>
  2729. <tbody>
  2730. <tr>
  2731. <td>
  2732. <code>secretRef</code></br>
  2733. <em>
  2734. <a href="#external-secrets.io/v1.BitwardenSecretsManagerSecretRef">
  2735. BitwardenSecretsManagerSecretRef
  2736. </a>
  2737. </em>
  2738. </td>
  2739. <td>
  2740. </td>
  2741. </tr>
  2742. </tbody>
  2743. </table>
  2744. <h3 id="external-secrets.io/v1.BitwardenSecretsManagerProvider">BitwardenSecretsManagerProvider
  2745. </h3>
  2746. <p>
  2747. (<em>Appears on:</em>
  2748. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  2749. </p>
  2750. <p>
  2751. <p>BitwardenSecretsManagerProvider configures a store to sync secrets with a Bitwarden Secrets Manager instance.</p>
  2752. </p>
  2753. <table>
  2754. <thead>
  2755. <tr>
  2756. <th>Field</th>
  2757. <th>Description</th>
  2758. </tr>
  2759. </thead>
  2760. <tbody>
  2761. <tr>
  2762. <td>
  2763. <code>apiURL</code></br>
  2764. <em>
  2765. string
  2766. </em>
  2767. </td>
  2768. <td>
  2769. </td>
  2770. </tr>
  2771. <tr>
  2772. <td>
  2773. <code>identityURL</code></br>
  2774. <em>
  2775. string
  2776. </em>
  2777. </td>
  2778. <td>
  2779. </td>
  2780. </tr>
  2781. <tr>
  2782. <td>
  2783. <code>bitwardenServerSDKURL</code></br>
  2784. <em>
  2785. string
  2786. </em>
  2787. </td>
  2788. <td>
  2789. </td>
  2790. </tr>
  2791. <tr>
  2792. <td>
  2793. <code>caBundle</code></br>
  2794. <em>
  2795. string
  2796. </em>
  2797. </td>
  2798. <td>
  2799. <em>(Optional)</em>
  2800. <p>Base64 encoded certificate for the bitwarden server sdk. The sdk MUST run with HTTPS to make sure no MITM attack
  2801. can be performed.</p>
  2802. </td>
  2803. </tr>
  2804. <tr>
  2805. <td>
  2806. <code>caProvider</code></br>
  2807. <em>
  2808. <a href="#external-secrets.io/v1.CAProvider">
  2809. CAProvider
  2810. </a>
  2811. </em>
  2812. </td>
  2813. <td>
  2814. <em>(Optional)</em>
  2815. <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>
  2816. </td>
  2817. </tr>
  2818. <tr>
  2819. <td>
  2820. <code>organizationID</code></br>
  2821. <em>
  2822. string
  2823. </em>
  2824. </td>
  2825. <td>
  2826. <p>OrganizationID determines which organization this secret store manages.</p>
  2827. </td>
  2828. </tr>
  2829. <tr>
  2830. <td>
  2831. <code>projectID</code></br>
  2832. <em>
  2833. string
  2834. </em>
  2835. </td>
  2836. <td>
  2837. <p>ProjectID determines which project this secret store manages.</p>
  2838. </td>
  2839. </tr>
  2840. <tr>
  2841. <td>
  2842. <code>auth</code></br>
  2843. <em>
  2844. <a href="#external-secrets.io/v1.BitwardenSecretsManagerAuth">
  2845. BitwardenSecretsManagerAuth
  2846. </a>
  2847. </em>
  2848. </td>
  2849. <td>
  2850. <p>Auth configures how secret-manager authenticates with a bitwarden machine account instance.
  2851. Make sure that the token being used has permissions on the given secret.</p>
  2852. </td>
  2853. </tr>
  2854. </tbody>
  2855. </table>
  2856. <h3 id="external-secrets.io/v1.BitwardenSecretsManagerSecretRef">BitwardenSecretsManagerSecretRef
  2857. </h3>
  2858. <p>
  2859. (<em>Appears on:</em>
  2860. <a href="#external-secrets.io/v1.BitwardenSecretsManagerAuth">BitwardenSecretsManagerAuth</a>)
  2861. </p>
  2862. <p>
  2863. <p>BitwardenSecretsManagerSecretRef contains the credential ref to the bitwarden instance.</p>
  2864. </p>
  2865. <table>
  2866. <thead>
  2867. <tr>
  2868. <th>Field</th>
  2869. <th>Description</th>
  2870. </tr>
  2871. </thead>
  2872. <tbody>
  2873. <tr>
  2874. <td>
  2875. <code>credentials</code></br>
  2876. <em>
  2877. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2878. External Secrets meta/v1.SecretKeySelector
  2879. </a>
  2880. </em>
  2881. </td>
  2882. <td>
  2883. <p>AccessToken used for the bitwarden instance.</p>
  2884. </td>
  2885. </tr>
  2886. </tbody>
  2887. </table>
  2888. <h3 id="external-secrets.io/v1.ByID">ByID
  2889. </h3>
  2890. <p>
  2891. (<em>Appears on:</em>
  2892. <a href="#external-secrets.io/v1.FetchingPolicy">FetchingPolicy</a>)
  2893. </p>
  2894. <p>
  2895. <p>ByID configures the provider to interpret the <code>data.secretKey.remoteRef.key</code> field in ExternalSecret as secret ID.</p>
  2896. </p>
  2897. <h3 id="external-secrets.io/v1.ByName">ByName
  2898. </h3>
  2899. <p>
  2900. (<em>Appears on:</em>
  2901. <a href="#external-secrets.io/v1.FetchingPolicy">FetchingPolicy</a>)
  2902. </p>
  2903. <p>
  2904. <p>ByName configures the provider to interpret the <code>data.secretKey.remoteRef.key</code> field in ExternalSecret as secret name.</p>
  2905. </p>
  2906. <table>
  2907. <thead>
  2908. <tr>
  2909. <th>Field</th>
  2910. <th>Description</th>
  2911. </tr>
  2912. </thead>
  2913. <tbody>
  2914. <tr>
  2915. <td>
  2916. <code>folderID</code></br>
  2917. <em>
  2918. string
  2919. </em>
  2920. </td>
  2921. <td>
  2922. <p>The folder to fetch secrets from</p>
  2923. </td>
  2924. </tr>
  2925. </tbody>
  2926. </table>
  2927. <h3 id="external-secrets.io/v1.CAProvider">CAProvider
  2928. </h3>
  2929. <p>
  2930. (<em>Appears on:</em>
  2931. <a href="#external-secrets.io/v1.AkeylessProvider">AkeylessProvider</a>,
  2932. <a href="#external-secrets.io/v1.BitwardenSecretsManagerProvider">BitwardenSecretsManagerProvider</a>,
  2933. <a href="#external-secrets.io/v1.ConjurProvider">ConjurProvider</a>,
  2934. <a href="#external-secrets.io/v1.GitlabProvider">GitlabProvider</a>,
  2935. <a href="#external-secrets.io/v1.KubernetesServer">KubernetesServer</a>,
  2936. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  2937. </p>
  2938. <p>
  2939. <p>Used to provide custom certificate authority (CA) certificates
  2940. for a secret store. The CAProvider points to a Secret or ConfigMap resource
  2941. that contains a PEM-encoded certificate.</p>
  2942. </p>
  2943. <table>
  2944. <thead>
  2945. <tr>
  2946. <th>Field</th>
  2947. <th>Description</th>
  2948. </tr>
  2949. </thead>
  2950. <tbody>
  2951. <tr>
  2952. <td>
  2953. <code>type</code></br>
  2954. <em>
  2955. <a href="#external-secrets.io/v1.CAProviderType">
  2956. CAProviderType
  2957. </a>
  2958. </em>
  2959. </td>
  2960. <td>
  2961. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  2962. </td>
  2963. </tr>
  2964. <tr>
  2965. <td>
  2966. <code>name</code></br>
  2967. <em>
  2968. string
  2969. </em>
  2970. </td>
  2971. <td>
  2972. <p>The name of the object located at the provider type.</p>
  2973. </td>
  2974. </tr>
  2975. <tr>
  2976. <td>
  2977. <code>key</code></br>
  2978. <em>
  2979. string
  2980. </em>
  2981. </td>
  2982. <td>
  2983. <p>The key where the CA certificate can be found in the Secret or ConfigMap.</p>
  2984. </td>
  2985. </tr>
  2986. <tr>
  2987. <td>
  2988. <code>namespace</code></br>
  2989. <em>
  2990. string
  2991. </em>
  2992. </td>
  2993. <td>
  2994. <em>(Optional)</em>
  2995. <p>The namespace the Provider type is in.
  2996. Can only be defined when used in a ClusterSecretStore.</p>
  2997. </td>
  2998. </tr>
  2999. </tbody>
  3000. </table>
  3001. <h3 id="external-secrets.io/v1.CAProviderType">CAProviderType
  3002. (<code>string</code> alias)</p></h3>
  3003. <p>
  3004. (<em>Appears on:</em>
  3005. <a href="#external-secrets.io/v1.CAProvider">CAProvider</a>)
  3006. </p>
  3007. <p>
  3008. </p>
  3009. <table>
  3010. <thead>
  3011. <tr>
  3012. <th>Value</th>
  3013. <th>Description</th>
  3014. </tr>
  3015. </thead>
  3016. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  3017. <td></td>
  3018. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  3019. <td></td>
  3020. </tr></tbody>
  3021. </table>
  3022. <h3 id="external-secrets.io/v1.CSMAuth">CSMAuth
  3023. </h3>
  3024. <p>
  3025. (<em>Appears on:</em>
  3026. <a href="#external-secrets.io/v1.CloudruSMProvider">CloudruSMProvider</a>)
  3027. </p>
  3028. <p>
  3029. <p>CSMAuth contains a secretRef for credentials.</p>
  3030. </p>
  3031. <table>
  3032. <thead>
  3033. <tr>
  3034. <th>Field</th>
  3035. <th>Description</th>
  3036. </tr>
  3037. </thead>
  3038. <tbody>
  3039. <tr>
  3040. <td>
  3041. <code>secretRef</code></br>
  3042. <em>
  3043. <a href="#external-secrets.io/v1.CSMAuthSecretRef">
  3044. CSMAuthSecretRef
  3045. </a>
  3046. </em>
  3047. </td>
  3048. <td>
  3049. <em>(Optional)</em>
  3050. </td>
  3051. </tr>
  3052. </tbody>
  3053. </table>
  3054. <h3 id="external-secrets.io/v1.CSMAuthSecretRef">CSMAuthSecretRef
  3055. </h3>
  3056. <p>
  3057. (<em>Appears on:</em>
  3058. <a href="#external-secrets.io/v1.CSMAuth">CSMAuth</a>)
  3059. </p>
  3060. <p>
  3061. <p>CSMAuthSecretRef holds secret references for Cloud.ru credentials.</p>
  3062. </p>
  3063. <table>
  3064. <thead>
  3065. <tr>
  3066. <th>Field</th>
  3067. <th>Description</th>
  3068. </tr>
  3069. </thead>
  3070. <tbody>
  3071. <tr>
  3072. <td>
  3073. <code>accessKeyIDSecretRef</code></br>
  3074. <em>
  3075. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3076. External Secrets meta/v1.SecretKeySelector
  3077. </a>
  3078. </em>
  3079. </td>
  3080. <td>
  3081. <p>The AccessKeyID is used for authentication</p>
  3082. </td>
  3083. </tr>
  3084. <tr>
  3085. <td>
  3086. <code>accessKeySecretSecretRef</code></br>
  3087. <em>
  3088. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3089. External Secrets meta/v1.SecretKeySelector
  3090. </a>
  3091. </em>
  3092. </td>
  3093. <td>
  3094. <p>The AccessKeySecret is used for authentication</p>
  3095. </td>
  3096. </tr>
  3097. </tbody>
  3098. </table>
  3099. <h3 id="external-secrets.io/v1.CertAuth">CertAuth
  3100. </h3>
  3101. <p>
  3102. (<em>Appears on:</em>
  3103. <a href="#external-secrets.io/v1.KubernetesAuth">KubernetesAuth</a>)
  3104. </p>
  3105. <p>
  3106. </p>
  3107. <table>
  3108. <thead>
  3109. <tr>
  3110. <th>Field</th>
  3111. <th>Description</th>
  3112. </tr>
  3113. </thead>
  3114. <tbody>
  3115. <tr>
  3116. <td>
  3117. <code>clientCert</code></br>
  3118. <em>
  3119. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3120. External Secrets meta/v1.SecretKeySelector
  3121. </a>
  3122. </em>
  3123. </td>
  3124. <td>
  3125. </td>
  3126. </tr>
  3127. <tr>
  3128. <td>
  3129. <code>clientKey</code></br>
  3130. <em>
  3131. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3132. External Secrets meta/v1.SecretKeySelector
  3133. </a>
  3134. </em>
  3135. </td>
  3136. <td>
  3137. </td>
  3138. </tr>
  3139. </tbody>
  3140. </table>
  3141. <h3 id="external-secrets.io/v1.ChefAuth">ChefAuth
  3142. </h3>
  3143. <p>
  3144. (<em>Appears on:</em>
  3145. <a href="#external-secrets.io/v1.ChefProvider">ChefProvider</a>)
  3146. </p>
  3147. <p>
  3148. <p>ChefAuth contains a secretRef for credentials.</p>
  3149. </p>
  3150. <table>
  3151. <thead>
  3152. <tr>
  3153. <th>Field</th>
  3154. <th>Description</th>
  3155. </tr>
  3156. </thead>
  3157. <tbody>
  3158. <tr>
  3159. <td>
  3160. <code>secretRef</code></br>
  3161. <em>
  3162. <a href="#external-secrets.io/v1.ChefAuthSecretRef">
  3163. ChefAuthSecretRef
  3164. </a>
  3165. </em>
  3166. </td>
  3167. <td>
  3168. </td>
  3169. </tr>
  3170. </tbody>
  3171. </table>
  3172. <h3 id="external-secrets.io/v1.ChefAuthSecretRef">ChefAuthSecretRef
  3173. </h3>
  3174. <p>
  3175. (<em>Appears on:</em>
  3176. <a href="#external-secrets.io/v1.ChefAuth">ChefAuth</a>)
  3177. </p>
  3178. <p>
  3179. <p>ChefAuthSecretRef holds secret references for chef server login credentials.</p>
  3180. </p>
  3181. <table>
  3182. <thead>
  3183. <tr>
  3184. <th>Field</th>
  3185. <th>Description</th>
  3186. </tr>
  3187. </thead>
  3188. <tbody>
  3189. <tr>
  3190. <td>
  3191. <code>privateKeySecretRef</code></br>
  3192. <em>
  3193. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3194. External Secrets meta/v1.SecretKeySelector
  3195. </a>
  3196. </em>
  3197. </td>
  3198. <td>
  3199. <p>SecretKey is the Signing Key in PEM format, used for authentication.</p>
  3200. </td>
  3201. </tr>
  3202. </tbody>
  3203. </table>
  3204. <h3 id="external-secrets.io/v1.ChefProvider">ChefProvider
  3205. </h3>
  3206. <p>
  3207. (<em>Appears on:</em>
  3208. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  3209. </p>
  3210. <p>
  3211. <p>ChefProvider configures a store to sync secrets using basic chef server connection credentials.</p>
  3212. </p>
  3213. <table>
  3214. <thead>
  3215. <tr>
  3216. <th>Field</th>
  3217. <th>Description</th>
  3218. </tr>
  3219. </thead>
  3220. <tbody>
  3221. <tr>
  3222. <td>
  3223. <code>auth</code></br>
  3224. <em>
  3225. <a href="#external-secrets.io/v1.ChefAuth">
  3226. ChefAuth
  3227. </a>
  3228. </em>
  3229. </td>
  3230. <td>
  3231. <p>Auth defines the information necessary to authenticate against chef Server</p>
  3232. </td>
  3233. </tr>
  3234. <tr>
  3235. <td>
  3236. <code>username</code></br>
  3237. <em>
  3238. string
  3239. </em>
  3240. </td>
  3241. <td>
  3242. <p>UserName should be the user ID on the chef server</p>
  3243. </td>
  3244. </tr>
  3245. <tr>
  3246. <td>
  3247. <code>serverUrl</code></br>
  3248. <em>
  3249. string
  3250. </em>
  3251. </td>
  3252. <td>
  3253. <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>
  3254. </td>
  3255. </tr>
  3256. </tbody>
  3257. </table>
  3258. <h3 id="external-secrets.io/v1.CloudruSMProvider">CloudruSMProvider
  3259. </h3>
  3260. <p>
  3261. (<em>Appears on:</em>
  3262. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  3263. </p>
  3264. <p>
  3265. <p>CloudruSMProvider configures a store to sync secrets using the Cloud.ru Secret Manager provider.</p>
  3266. </p>
  3267. <table>
  3268. <thead>
  3269. <tr>
  3270. <th>Field</th>
  3271. <th>Description</th>
  3272. </tr>
  3273. </thead>
  3274. <tbody>
  3275. <tr>
  3276. <td>
  3277. <code>auth</code></br>
  3278. <em>
  3279. <a href="#external-secrets.io/v1.CSMAuth">
  3280. CSMAuth
  3281. </a>
  3282. </em>
  3283. </td>
  3284. <td>
  3285. </td>
  3286. </tr>
  3287. <tr>
  3288. <td>
  3289. <code>projectID</code></br>
  3290. <em>
  3291. string
  3292. </em>
  3293. </td>
  3294. <td>
  3295. <p>ProjectID is the project, which the secrets are stored in.</p>
  3296. </td>
  3297. </tr>
  3298. </tbody>
  3299. </table>
  3300. <h3 id="external-secrets.io/v1.ClusterExternalSecret">ClusterExternalSecret
  3301. </h3>
  3302. <p>
  3303. <p>ClusterExternalSecret is the Schema for the clusterexternalsecrets API.</p>
  3304. </p>
  3305. <table>
  3306. <thead>
  3307. <tr>
  3308. <th>Field</th>
  3309. <th>Description</th>
  3310. </tr>
  3311. </thead>
  3312. <tbody>
  3313. <tr>
  3314. <td>
  3315. <code>metadata</code></br>
  3316. <em>
  3317. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  3318. Kubernetes meta/v1.ObjectMeta
  3319. </a>
  3320. </em>
  3321. </td>
  3322. <td>
  3323. Refer to the Kubernetes API documentation for the fields of the
  3324. <code>metadata</code> field.
  3325. </td>
  3326. </tr>
  3327. <tr>
  3328. <td>
  3329. <code>spec</code></br>
  3330. <em>
  3331. <a href="#external-secrets.io/v1.ClusterExternalSecretSpec">
  3332. ClusterExternalSecretSpec
  3333. </a>
  3334. </em>
  3335. </td>
  3336. <td>
  3337. <br/>
  3338. <br/>
  3339. <table>
  3340. <tr>
  3341. <td>
  3342. <code>externalSecretSpec</code></br>
  3343. <em>
  3344. <a href="#external-secrets.io/v1.ExternalSecretSpec">
  3345. ExternalSecretSpec
  3346. </a>
  3347. </em>
  3348. </td>
  3349. <td>
  3350. <p>The spec for the ExternalSecrets to be created</p>
  3351. </td>
  3352. </tr>
  3353. <tr>
  3354. <td>
  3355. <code>externalSecretName</code></br>
  3356. <em>
  3357. string
  3358. </em>
  3359. </td>
  3360. <td>
  3361. <em>(Optional)</em>
  3362. <p>The name of the external secrets to be created.
  3363. Defaults to the name of the ClusterExternalSecret</p>
  3364. </td>
  3365. </tr>
  3366. <tr>
  3367. <td>
  3368. <code>externalSecretMetadata</code></br>
  3369. <em>
  3370. <a href="#external-secrets.io/v1.ExternalSecretMetadata">
  3371. ExternalSecretMetadata
  3372. </a>
  3373. </em>
  3374. </td>
  3375. <td>
  3376. <em>(Optional)</em>
  3377. <p>The metadata of the external secrets to be created</p>
  3378. </td>
  3379. </tr>
  3380. <tr>
  3381. <td>
  3382. <code>namespaceSelector</code></br>
  3383. <em>
  3384. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  3385. Kubernetes meta/v1.LabelSelector
  3386. </a>
  3387. </em>
  3388. </td>
  3389. <td>
  3390. <em>(Optional)</em>
  3391. <p>The labels to select by to find the Namespaces to create the ExternalSecrets in.
  3392. Deprecated: Use NamespaceSelectors instead.</p>
  3393. </td>
  3394. </tr>
  3395. <tr>
  3396. <td>
  3397. <code>namespaceSelectors</code></br>
  3398. <em>
  3399. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#*k8s.io/apimachinery/pkg/apis/meta/v1.labelselector--">
  3400. []*k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector
  3401. </a>
  3402. </em>
  3403. </td>
  3404. <td>
  3405. <em>(Optional)</em>
  3406. <p>A list of labels to select by to find the Namespaces to create the ExternalSecrets in. The selectors are ORed.</p>
  3407. </td>
  3408. </tr>
  3409. <tr>
  3410. <td>
  3411. <code>namespaces</code></br>
  3412. <em>
  3413. []string
  3414. </em>
  3415. </td>
  3416. <td>
  3417. <em>(Optional)</em>
  3418. <p>Choose namespaces by name. This field is ORed with anything that NamespaceSelectors ends up choosing.
  3419. Deprecated: Use NamespaceSelectors instead.</p>
  3420. </td>
  3421. </tr>
  3422. <tr>
  3423. <td>
  3424. <code>refreshTime</code></br>
  3425. <em>
  3426. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  3427. Kubernetes meta/v1.Duration
  3428. </a>
  3429. </em>
  3430. </td>
  3431. <td>
  3432. <p>The time in which the controller should reconcile its objects and recheck namespaces for labels.</p>
  3433. </td>
  3434. </tr>
  3435. </table>
  3436. </td>
  3437. </tr>
  3438. <tr>
  3439. <td>
  3440. <code>status</code></br>
  3441. <em>
  3442. <a href="#external-secrets.io/v1.ClusterExternalSecretStatus">
  3443. ClusterExternalSecretStatus
  3444. </a>
  3445. </em>
  3446. </td>
  3447. <td>
  3448. </td>
  3449. </tr>
  3450. </tbody>
  3451. </table>
  3452. <h3 id="external-secrets.io/v1.ClusterExternalSecretConditionType">ClusterExternalSecretConditionType
  3453. (<code>string</code> alias)</p></h3>
  3454. <p>
  3455. (<em>Appears on:</em>
  3456. <a href="#external-secrets.io/v1.ClusterExternalSecretStatusCondition">ClusterExternalSecretStatusCondition</a>)
  3457. </p>
  3458. <p>
  3459. </p>
  3460. <table>
  3461. <thead>
  3462. <tr>
  3463. <th>Value</th>
  3464. <th>Description</th>
  3465. </tr>
  3466. </thead>
  3467. <tbody><tr><td><p>&#34;Ready&#34;</p></td>
  3468. <td></td>
  3469. </tr></tbody>
  3470. </table>
  3471. <h3 id="external-secrets.io/v1.ClusterExternalSecretNamespaceFailure">ClusterExternalSecretNamespaceFailure
  3472. </h3>
  3473. <p>
  3474. (<em>Appears on:</em>
  3475. <a href="#external-secrets.io/v1.ClusterExternalSecretStatus">ClusterExternalSecretStatus</a>)
  3476. </p>
  3477. <p>
  3478. <p>ClusterExternalSecretNamespaceFailure represents a failed namespace deployment and it&rsquo;s reason.</p>
  3479. </p>
  3480. <table>
  3481. <thead>
  3482. <tr>
  3483. <th>Field</th>
  3484. <th>Description</th>
  3485. </tr>
  3486. </thead>
  3487. <tbody>
  3488. <tr>
  3489. <td>
  3490. <code>namespace</code></br>
  3491. <em>
  3492. string
  3493. </em>
  3494. </td>
  3495. <td>
  3496. <p>Namespace is the namespace that failed when trying to apply an ExternalSecret</p>
  3497. </td>
  3498. </tr>
  3499. <tr>
  3500. <td>
  3501. <code>reason</code></br>
  3502. <em>
  3503. string
  3504. </em>
  3505. </td>
  3506. <td>
  3507. <em>(Optional)</em>
  3508. <p>Reason is why the ExternalSecret failed to apply to the namespace</p>
  3509. </td>
  3510. </tr>
  3511. </tbody>
  3512. </table>
  3513. <h3 id="external-secrets.io/v1.ClusterExternalSecretSpec">ClusterExternalSecretSpec
  3514. </h3>
  3515. <p>
  3516. (<em>Appears on:</em>
  3517. <a href="#external-secrets.io/v1.ClusterExternalSecret">ClusterExternalSecret</a>)
  3518. </p>
  3519. <p>
  3520. <p>ClusterExternalSecretSpec defines the desired state of ClusterExternalSecret.</p>
  3521. </p>
  3522. <table>
  3523. <thead>
  3524. <tr>
  3525. <th>Field</th>
  3526. <th>Description</th>
  3527. </tr>
  3528. </thead>
  3529. <tbody>
  3530. <tr>
  3531. <td>
  3532. <code>externalSecretSpec</code></br>
  3533. <em>
  3534. <a href="#external-secrets.io/v1.ExternalSecretSpec">
  3535. ExternalSecretSpec
  3536. </a>
  3537. </em>
  3538. </td>
  3539. <td>
  3540. <p>The spec for the ExternalSecrets to be created</p>
  3541. </td>
  3542. </tr>
  3543. <tr>
  3544. <td>
  3545. <code>externalSecretName</code></br>
  3546. <em>
  3547. string
  3548. </em>
  3549. </td>
  3550. <td>
  3551. <em>(Optional)</em>
  3552. <p>The name of the external secrets to be created.
  3553. Defaults to the name of the ClusterExternalSecret</p>
  3554. </td>
  3555. </tr>
  3556. <tr>
  3557. <td>
  3558. <code>externalSecretMetadata</code></br>
  3559. <em>
  3560. <a href="#external-secrets.io/v1.ExternalSecretMetadata">
  3561. ExternalSecretMetadata
  3562. </a>
  3563. </em>
  3564. </td>
  3565. <td>
  3566. <em>(Optional)</em>
  3567. <p>The metadata of the external secrets to be created</p>
  3568. </td>
  3569. </tr>
  3570. <tr>
  3571. <td>
  3572. <code>namespaceSelector</code></br>
  3573. <em>
  3574. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  3575. Kubernetes meta/v1.LabelSelector
  3576. </a>
  3577. </em>
  3578. </td>
  3579. <td>
  3580. <em>(Optional)</em>
  3581. <p>The labels to select by to find the Namespaces to create the ExternalSecrets in.
  3582. Deprecated: Use NamespaceSelectors instead.</p>
  3583. </td>
  3584. </tr>
  3585. <tr>
  3586. <td>
  3587. <code>namespaceSelectors</code></br>
  3588. <em>
  3589. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#*k8s.io/apimachinery/pkg/apis/meta/v1.labelselector--">
  3590. []*k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector
  3591. </a>
  3592. </em>
  3593. </td>
  3594. <td>
  3595. <em>(Optional)</em>
  3596. <p>A list of labels to select by to find the Namespaces to create the ExternalSecrets in. The selectors are ORed.</p>
  3597. </td>
  3598. </tr>
  3599. <tr>
  3600. <td>
  3601. <code>namespaces</code></br>
  3602. <em>
  3603. []string
  3604. </em>
  3605. </td>
  3606. <td>
  3607. <em>(Optional)</em>
  3608. <p>Choose namespaces by name. This field is ORed with anything that NamespaceSelectors ends up choosing.
  3609. Deprecated: Use NamespaceSelectors instead.</p>
  3610. </td>
  3611. </tr>
  3612. <tr>
  3613. <td>
  3614. <code>refreshTime</code></br>
  3615. <em>
  3616. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  3617. Kubernetes meta/v1.Duration
  3618. </a>
  3619. </em>
  3620. </td>
  3621. <td>
  3622. <p>The time in which the controller should reconcile its objects and recheck namespaces for labels.</p>
  3623. </td>
  3624. </tr>
  3625. </tbody>
  3626. </table>
  3627. <h3 id="external-secrets.io/v1.ClusterExternalSecretStatus">ClusterExternalSecretStatus
  3628. </h3>
  3629. <p>
  3630. (<em>Appears on:</em>
  3631. <a href="#external-secrets.io/v1.ClusterExternalSecret">ClusterExternalSecret</a>)
  3632. </p>
  3633. <p>
  3634. <p>ClusterExternalSecretStatus defines the observed state of ClusterExternalSecret.</p>
  3635. </p>
  3636. <table>
  3637. <thead>
  3638. <tr>
  3639. <th>Field</th>
  3640. <th>Description</th>
  3641. </tr>
  3642. </thead>
  3643. <tbody>
  3644. <tr>
  3645. <td>
  3646. <code>externalSecretName</code></br>
  3647. <em>
  3648. string
  3649. </em>
  3650. </td>
  3651. <td>
  3652. <p>ExternalSecretName is the name of the ExternalSecrets created by the ClusterExternalSecret</p>
  3653. </td>
  3654. </tr>
  3655. <tr>
  3656. <td>
  3657. <code>failedNamespaces</code></br>
  3658. <em>
  3659. <a href="#external-secrets.io/v1.ClusterExternalSecretNamespaceFailure">
  3660. []ClusterExternalSecretNamespaceFailure
  3661. </a>
  3662. </em>
  3663. </td>
  3664. <td>
  3665. <em>(Optional)</em>
  3666. <p>Failed namespaces are the namespaces that failed to apply an ExternalSecret</p>
  3667. </td>
  3668. </tr>
  3669. <tr>
  3670. <td>
  3671. <code>provisionedNamespaces</code></br>
  3672. <em>
  3673. []string
  3674. </em>
  3675. </td>
  3676. <td>
  3677. <em>(Optional)</em>
  3678. <p>ProvisionedNamespaces are the namespaces where the ClusterExternalSecret has secrets</p>
  3679. </td>
  3680. </tr>
  3681. <tr>
  3682. <td>
  3683. <code>conditions</code></br>
  3684. <em>
  3685. <a href="#external-secrets.io/v1.ClusterExternalSecretStatusCondition">
  3686. []ClusterExternalSecretStatusCondition
  3687. </a>
  3688. </em>
  3689. </td>
  3690. <td>
  3691. <em>(Optional)</em>
  3692. </td>
  3693. </tr>
  3694. </tbody>
  3695. </table>
  3696. <h3 id="external-secrets.io/v1.ClusterExternalSecretStatusCondition">ClusterExternalSecretStatusCondition
  3697. </h3>
  3698. <p>
  3699. (<em>Appears on:</em>
  3700. <a href="#external-secrets.io/v1.ClusterExternalSecretStatus">ClusterExternalSecretStatus</a>)
  3701. </p>
  3702. <p>
  3703. </p>
  3704. <table>
  3705. <thead>
  3706. <tr>
  3707. <th>Field</th>
  3708. <th>Description</th>
  3709. </tr>
  3710. </thead>
  3711. <tbody>
  3712. <tr>
  3713. <td>
  3714. <code>type</code></br>
  3715. <em>
  3716. <a href="#external-secrets.io/v1.ClusterExternalSecretConditionType">
  3717. ClusterExternalSecretConditionType
  3718. </a>
  3719. </em>
  3720. </td>
  3721. <td>
  3722. </td>
  3723. </tr>
  3724. <tr>
  3725. <td>
  3726. <code>status</code></br>
  3727. <em>
  3728. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  3729. Kubernetes core/v1.ConditionStatus
  3730. </a>
  3731. </em>
  3732. </td>
  3733. <td>
  3734. </td>
  3735. </tr>
  3736. <tr>
  3737. <td>
  3738. <code>message</code></br>
  3739. <em>
  3740. string
  3741. </em>
  3742. </td>
  3743. <td>
  3744. <em>(Optional)</em>
  3745. </td>
  3746. </tr>
  3747. </tbody>
  3748. </table>
  3749. <h3 id="external-secrets.io/v1.ClusterSecretStore">ClusterSecretStore
  3750. </h3>
  3751. <p>
  3752. <p>ClusterSecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  3753. </p>
  3754. <table>
  3755. <thead>
  3756. <tr>
  3757. <th>Field</th>
  3758. <th>Description</th>
  3759. </tr>
  3760. </thead>
  3761. <tbody>
  3762. <tr>
  3763. <td>
  3764. <code>metadata</code></br>
  3765. <em>
  3766. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  3767. Kubernetes meta/v1.ObjectMeta
  3768. </a>
  3769. </em>
  3770. </td>
  3771. <td>
  3772. Refer to the Kubernetes API documentation for the fields of the
  3773. <code>metadata</code> field.
  3774. </td>
  3775. </tr>
  3776. <tr>
  3777. <td>
  3778. <code>spec</code></br>
  3779. <em>
  3780. <a href="#external-secrets.io/v1.SecretStoreSpec">
  3781. SecretStoreSpec
  3782. </a>
  3783. </em>
  3784. </td>
  3785. <td>
  3786. <br/>
  3787. <br/>
  3788. <table>
  3789. <tr>
  3790. <td>
  3791. <code>controller</code></br>
  3792. <em>
  3793. string
  3794. </em>
  3795. </td>
  3796. <td>
  3797. <em>(Optional)</em>
  3798. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  3799. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  3800. </td>
  3801. </tr>
  3802. <tr>
  3803. <td>
  3804. <code>provider</code></br>
  3805. <em>
  3806. <a href="#external-secrets.io/v1.SecretStoreProvider">
  3807. SecretStoreProvider
  3808. </a>
  3809. </em>
  3810. </td>
  3811. <td>
  3812. <p>Used to configure the provider. Only one provider may be set</p>
  3813. </td>
  3814. </tr>
  3815. <tr>
  3816. <td>
  3817. <code>retrySettings</code></br>
  3818. <em>
  3819. <a href="#external-secrets.io/v1.SecretStoreRetrySettings">
  3820. SecretStoreRetrySettings
  3821. </a>
  3822. </em>
  3823. </td>
  3824. <td>
  3825. <em>(Optional)</em>
  3826. <p>Used to configure http retries if failed</p>
  3827. </td>
  3828. </tr>
  3829. <tr>
  3830. <td>
  3831. <code>refreshInterval</code></br>
  3832. <em>
  3833. int
  3834. </em>
  3835. </td>
  3836. <td>
  3837. <em>(Optional)</em>
  3838. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  3839. </td>
  3840. </tr>
  3841. <tr>
  3842. <td>
  3843. <code>conditions</code></br>
  3844. <em>
  3845. <a href="#external-secrets.io/v1.ClusterSecretStoreCondition">
  3846. []ClusterSecretStoreCondition
  3847. </a>
  3848. </em>
  3849. </td>
  3850. <td>
  3851. <em>(Optional)</em>
  3852. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  3853. </td>
  3854. </tr>
  3855. </table>
  3856. </td>
  3857. </tr>
  3858. <tr>
  3859. <td>
  3860. <code>status</code></br>
  3861. <em>
  3862. <a href="#external-secrets.io/v1.SecretStoreStatus">
  3863. SecretStoreStatus
  3864. </a>
  3865. </em>
  3866. </td>
  3867. <td>
  3868. </td>
  3869. </tr>
  3870. </tbody>
  3871. </table>
  3872. <h3 id="external-secrets.io/v1.ClusterSecretStoreCondition">ClusterSecretStoreCondition
  3873. </h3>
  3874. <p>
  3875. (<em>Appears on:</em>
  3876. <a href="#external-secrets.io/v1.SecretStoreSpec">SecretStoreSpec</a>)
  3877. </p>
  3878. <p>
  3879. <p>ClusterSecretStoreCondition describes a condition by which to choose namespaces to process ExternalSecrets in
  3880. for a ClusterSecretStore instance.</p>
  3881. </p>
  3882. <table>
  3883. <thead>
  3884. <tr>
  3885. <th>Field</th>
  3886. <th>Description</th>
  3887. </tr>
  3888. </thead>
  3889. <tbody>
  3890. <tr>
  3891. <td>
  3892. <code>namespaceSelector</code></br>
  3893. <em>
  3894. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  3895. Kubernetes meta/v1.LabelSelector
  3896. </a>
  3897. </em>
  3898. </td>
  3899. <td>
  3900. <em>(Optional)</em>
  3901. <p>Choose namespace using a labelSelector</p>
  3902. </td>
  3903. </tr>
  3904. <tr>
  3905. <td>
  3906. <code>namespaces</code></br>
  3907. <em>
  3908. []string
  3909. </em>
  3910. </td>
  3911. <td>
  3912. <em>(Optional)</em>
  3913. <p>Choose namespaces by name</p>
  3914. </td>
  3915. </tr>
  3916. <tr>
  3917. <td>
  3918. <code>namespaceRegexes</code></br>
  3919. <em>
  3920. []string
  3921. </em>
  3922. </td>
  3923. <td>
  3924. <em>(Optional)</em>
  3925. <p>Choose namespaces by using regex matching</p>
  3926. </td>
  3927. </tr>
  3928. </tbody>
  3929. </table>
  3930. <h3 id="external-secrets.io/v1.ConfigMapReference">ConfigMapReference
  3931. </h3>
  3932. <p>
  3933. (<em>Appears on:</em>
  3934. <a href="#external-secrets.io/v1.GCPWorkloadIdentityFederation">GCPWorkloadIdentityFederation</a>)
  3935. </p>
  3936. <p>
  3937. <p>ConfigMapReference holds the details of a configmap.</p>
  3938. </p>
  3939. <table>
  3940. <thead>
  3941. <tr>
  3942. <th>Field</th>
  3943. <th>Description</th>
  3944. </tr>
  3945. </thead>
  3946. <tbody>
  3947. <tr>
  3948. <td>
  3949. <code>name</code></br>
  3950. <em>
  3951. string
  3952. </em>
  3953. </td>
  3954. <td>
  3955. <p>name of the configmap.</p>
  3956. </td>
  3957. </tr>
  3958. <tr>
  3959. <td>
  3960. <code>namespace</code></br>
  3961. <em>
  3962. string
  3963. </em>
  3964. </td>
  3965. <td>
  3966. <p>namespace in which the configmap exists. If empty, configmap will looked up in local namespace.</p>
  3967. </td>
  3968. </tr>
  3969. <tr>
  3970. <td>
  3971. <code>key</code></br>
  3972. <em>
  3973. string
  3974. </em>
  3975. </td>
  3976. <td>
  3977. <p>key name holding the external account credential config.</p>
  3978. </td>
  3979. </tr>
  3980. </tbody>
  3981. </table>
  3982. <h3 id="external-secrets.io/v1.ConjurAPIKey">ConjurAPIKey
  3983. </h3>
  3984. <p>
  3985. (<em>Appears on:</em>
  3986. <a href="#external-secrets.io/v1.ConjurAuth">ConjurAuth</a>)
  3987. </p>
  3988. <p>
  3989. </p>
  3990. <table>
  3991. <thead>
  3992. <tr>
  3993. <th>Field</th>
  3994. <th>Description</th>
  3995. </tr>
  3996. </thead>
  3997. <tbody>
  3998. <tr>
  3999. <td>
  4000. <code>account</code></br>
  4001. <em>
  4002. string
  4003. </em>
  4004. </td>
  4005. <td>
  4006. <p>Account is the Conjur organization account name.</p>
  4007. </td>
  4008. </tr>
  4009. <tr>
  4010. <td>
  4011. <code>userRef</code></br>
  4012. <em>
  4013. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4014. External Secrets meta/v1.SecretKeySelector
  4015. </a>
  4016. </em>
  4017. </td>
  4018. <td>
  4019. <p>A reference to a specific &lsquo;key&rsquo; containing the Conjur username
  4020. within a Secret resource. In some instances, <code>key</code> is a required field.</p>
  4021. </td>
  4022. </tr>
  4023. <tr>
  4024. <td>
  4025. <code>apiKeyRef</code></br>
  4026. <em>
  4027. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4028. External Secrets meta/v1.SecretKeySelector
  4029. </a>
  4030. </em>
  4031. </td>
  4032. <td>
  4033. <p>A reference to a specific &lsquo;key&rsquo; containing the Conjur API key
  4034. within a Secret resource. In some instances, <code>key</code> is a required field.</p>
  4035. </td>
  4036. </tr>
  4037. </tbody>
  4038. </table>
  4039. <h3 id="external-secrets.io/v1.ConjurAuth">ConjurAuth
  4040. </h3>
  4041. <p>
  4042. (<em>Appears on:</em>
  4043. <a href="#external-secrets.io/v1.ConjurProvider">ConjurProvider</a>)
  4044. </p>
  4045. <p>
  4046. </p>
  4047. <table>
  4048. <thead>
  4049. <tr>
  4050. <th>Field</th>
  4051. <th>Description</th>
  4052. </tr>
  4053. </thead>
  4054. <tbody>
  4055. <tr>
  4056. <td>
  4057. <code>apikey</code></br>
  4058. <em>
  4059. <a href="#external-secrets.io/v1.ConjurAPIKey">
  4060. ConjurAPIKey
  4061. </a>
  4062. </em>
  4063. </td>
  4064. <td>
  4065. <em>(Optional)</em>
  4066. <p>Authenticates with Conjur using an API key.</p>
  4067. </td>
  4068. </tr>
  4069. <tr>
  4070. <td>
  4071. <code>jwt</code></br>
  4072. <em>
  4073. <a href="#external-secrets.io/v1.ConjurJWT">
  4074. ConjurJWT
  4075. </a>
  4076. </em>
  4077. </td>
  4078. <td>
  4079. <em>(Optional)</em>
  4080. <p>Jwt enables JWT authentication using Kubernetes service account tokens.</p>
  4081. </td>
  4082. </tr>
  4083. </tbody>
  4084. </table>
  4085. <h3 id="external-secrets.io/v1.ConjurJWT">ConjurJWT
  4086. </h3>
  4087. <p>
  4088. (<em>Appears on:</em>
  4089. <a href="#external-secrets.io/v1.ConjurAuth">ConjurAuth</a>)
  4090. </p>
  4091. <p>
  4092. </p>
  4093. <table>
  4094. <thead>
  4095. <tr>
  4096. <th>Field</th>
  4097. <th>Description</th>
  4098. </tr>
  4099. </thead>
  4100. <tbody>
  4101. <tr>
  4102. <td>
  4103. <code>account</code></br>
  4104. <em>
  4105. string
  4106. </em>
  4107. </td>
  4108. <td>
  4109. <p>Account is the Conjur organization account name.</p>
  4110. </td>
  4111. </tr>
  4112. <tr>
  4113. <td>
  4114. <code>serviceID</code></br>
  4115. <em>
  4116. string
  4117. </em>
  4118. </td>
  4119. <td>
  4120. <p>The conjur authn jwt webservice id</p>
  4121. </td>
  4122. </tr>
  4123. <tr>
  4124. <td>
  4125. <code>hostId</code></br>
  4126. <em>
  4127. string
  4128. </em>
  4129. </td>
  4130. <td>
  4131. <em>(Optional)</em>
  4132. <p>Optional HostID for JWT authentication. This may be used depending
  4133. on how the Conjur JWT authenticator policy is configured.</p>
  4134. </td>
  4135. </tr>
  4136. <tr>
  4137. <td>
  4138. <code>secretRef</code></br>
  4139. <em>
  4140. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4141. External Secrets meta/v1.SecretKeySelector
  4142. </a>
  4143. </em>
  4144. </td>
  4145. <td>
  4146. <em>(Optional)</em>
  4147. <p>Optional SecretRef that refers to a key in a Secret resource containing JWT token to
  4148. authenticate with Conjur using the JWT authentication method.</p>
  4149. </td>
  4150. </tr>
  4151. <tr>
  4152. <td>
  4153. <code>serviceAccountRef</code></br>
  4154. <em>
  4155. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  4156. External Secrets meta/v1.ServiceAccountSelector
  4157. </a>
  4158. </em>
  4159. </td>
  4160. <td>
  4161. <em>(Optional)</em>
  4162. <p>Optional ServiceAccountRef specifies the Kubernetes service account for which to request
  4163. a token for with the <code>TokenRequest</code> API.</p>
  4164. </td>
  4165. </tr>
  4166. </tbody>
  4167. </table>
  4168. <h3 id="external-secrets.io/v1.ConjurProvider">ConjurProvider
  4169. </h3>
  4170. <p>
  4171. (<em>Appears on:</em>
  4172. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  4173. </p>
  4174. <p>
  4175. </p>
  4176. <table>
  4177. <thead>
  4178. <tr>
  4179. <th>Field</th>
  4180. <th>Description</th>
  4181. </tr>
  4182. </thead>
  4183. <tbody>
  4184. <tr>
  4185. <td>
  4186. <code>url</code></br>
  4187. <em>
  4188. string
  4189. </em>
  4190. </td>
  4191. <td>
  4192. <p>URL is the endpoint of the Conjur instance.</p>
  4193. </td>
  4194. </tr>
  4195. <tr>
  4196. <td>
  4197. <code>caBundle</code></br>
  4198. <em>
  4199. string
  4200. </em>
  4201. </td>
  4202. <td>
  4203. <em>(Optional)</em>
  4204. <p>CABundle is a PEM encoded CA bundle that will be used to validate the Conjur server certificate.</p>
  4205. </td>
  4206. </tr>
  4207. <tr>
  4208. <td>
  4209. <code>caProvider</code></br>
  4210. <em>
  4211. <a href="#external-secrets.io/v1.CAProvider">
  4212. CAProvider
  4213. </a>
  4214. </em>
  4215. </td>
  4216. <td>
  4217. <em>(Optional)</em>
  4218. <p>Used to provide custom certificate authority (CA) certificates
  4219. for a secret store. The CAProvider points to a Secret or ConfigMap resource
  4220. that contains a PEM-encoded certificate.</p>
  4221. </td>
  4222. </tr>
  4223. <tr>
  4224. <td>
  4225. <code>auth</code></br>
  4226. <em>
  4227. <a href="#external-secrets.io/v1.ConjurAuth">
  4228. ConjurAuth
  4229. </a>
  4230. </em>
  4231. </td>
  4232. <td>
  4233. <p>Defines authentication settings for connecting to Conjur.</p>
  4234. </td>
  4235. </tr>
  4236. </tbody>
  4237. </table>
  4238. <h3 id="external-secrets.io/v1.DelineaProvider">DelineaProvider
  4239. </h3>
  4240. <p>
  4241. (<em>Appears on:</em>
  4242. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  4243. </p>
  4244. <p>
  4245. <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>
  4246. </p>
  4247. <table>
  4248. <thead>
  4249. <tr>
  4250. <th>Field</th>
  4251. <th>Description</th>
  4252. </tr>
  4253. </thead>
  4254. <tbody>
  4255. <tr>
  4256. <td>
  4257. <code>clientId</code></br>
  4258. <em>
  4259. <a href="#external-secrets.io/v1.DelineaProviderSecretRef">
  4260. DelineaProviderSecretRef
  4261. </a>
  4262. </em>
  4263. </td>
  4264. <td>
  4265. <p>ClientID is the non-secret part of the credential.</p>
  4266. </td>
  4267. </tr>
  4268. <tr>
  4269. <td>
  4270. <code>clientSecret</code></br>
  4271. <em>
  4272. <a href="#external-secrets.io/v1.DelineaProviderSecretRef">
  4273. DelineaProviderSecretRef
  4274. </a>
  4275. </em>
  4276. </td>
  4277. <td>
  4278. <p>ClientSecret is the secret part of the credential.</p>
  4279. </td>
  4280. </tr>
  4281. <tr>
  4282. <td>
  4283. <code>tenant</code></br>
  4284. <em>
  4285. string
  4286. </em>
  4287. </td>
  4288. <td>
  4289. <p>Tenant is the chosen hostname / site name.</p>
  4290. </td>
  4291. </tr>
  4292. <tr>
  4293. <td>
  4294. <code>urlTemplate</code></br>
  4295. <em>
  4296. string
  4297. </em>
  4298. </td>
  4299. <td>
  4300. <em>(Optional)</em>
  4301. <p>URLTemplate
  4302. If unset, defaults to &ldquo;https://%s.secretsvaultcloud.%s/v1/%s%s&rdquo;.</p>
  4303. </td>
  4304. </tr>
  4305. <tr>
  4306. <td>
  4307. <code>tld</code></br>
  4308. <em>
  4309. string
  4310. </em>
  4311. </td>
  4312. <td>
  4313. <em>(Optional)</em>
  4314. <p>TLD is based on the server location that was chosen during provisioning.
  4315. If unset, defaults to &ldquo;com&rdquo;.</p>
  4316. </td>
  4317. </tr>
  4318. </tbody>
  4319. </table>
  4320. <h3 id="external-secrets.io/v1.DelineaProviderSecretRef">DelineaProviderSecretRef
  4321. </h3>
  4322. <p>
  4323. (<em>Appears on:</em>
  4324. <a href="#external-secrets.io/v1.DelineaProvider">DelineaProvider</a>)
  4325. </p>
  4326. <p>
  4327. </p>
  4328. <table>
  4329. <thead>
  4330. <tr>
  4331. <th>Field</th>
  4332. <th>Description</th>
  4333. </tr>
  4334. </thead>
  4335. <tbody>
  4336. <tr>
  4337. <td>
  4338. <code>value</code></br>
  4339. <em>
  4340. string
  4341. </em>
  4342. </td>
  4343. <td>
  4344. <em>(Optional)</em>
  4345. <p>Value can be specified directly to set a value without using a secret.</p>
  4346. </td>
  4347. </tr>
  4348. <tr>
  4349. <td>
  4350. <code>secretRef</code></br>
  4351. <em>
  4352. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4353. External Secrets meta/v1.SecretKeySelector
  4354. </a>
  4355. </em>
  4356. </td>
  4357. <td>
  4358. <em>(Optional)</em>
  4359. <p>SecretRef references a key in a secret that will be used as value.</p>
  4360. </td>
  4361. </tr>
  4362. </tbody>
  4363. </table>
  4364. <h3 id="external-secrets.io/v1.Device42Auth">Device42Auth
  4365. </h3>
  4366. <p>
  4367. (<em>Appears on:</em>
  4368. <a href="#external-secrets.io/v1.Device42Provider">Device42Provider</a>)
  4369. </p>
  4370. <p>
  4371. </p>
  4372. <table>
  4373. <thead>
  4374. <tr>
  4375. <th>Field</th>
  4376. <th>Description</th>
  4377. </tr>
  4378. </thead>
  4379. <tbody>
  4380. <tr>
  4381. <td>
  4382. <code>secretRef</code></br>
  4383. <em>
  4384. <a href="#external-secrets.io/v1.Device42SecretRef">
  4385. Device42SecretRef
  4386. </a>
  4387. </em>
  4388. </td>
  4389. <td>
  4390. </td>
  4391. </tr>
  4392. </tbody>
  4393. </table>
  4394. <h3 id="external-secrets.io/v1.Device42Provider">Device42Provider
  4395. </h3>
  4396. <p>
  4397. (<em>Appears on:</em>
  4398. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  4399. </p>
  4400. <p>
  4401. <p>Device42Provider configures a store to sync secrets with a Device42 instance.</p>
  4402. </p>
  4403. <table>
  4404. <thead>
  4405. <tr>
  4406. <th>Field</th>
  4407. <th>Description</th>
  4408. </tr>
  4409. </thead>
  4410. <tbody>
  4411. <tr>
  4412. <td>
  4413. <code>host</code></br>
  4414. <em>
  4415. string
  4416. </em>
  4417. </td>
  4418. <td>
  4419. <p>URL configures the Device42 instance URL.</p>
  4420. </td>
  4421. </tr>
  4422. <tr>
  4423. <td>
  4424. <code>auth</code></br>
  4425. <em>
  4426. <a href="#external-secrets.io/v1.Device42Auth">
  4427. Device42Auth
  4428. </a>
  4429. </em>
  4430. </td>
  4431. <td>
  4432. <p>Auth configures how secret-manager authenticates with a Device42 instance.</p>
  4433. </td>
  4434. </tr>
  4435. </tbody>
  4436. </table>
  4437. <h3 id="external-secrets.io/v1.Device42SecretRef">Device42SecretRef
  4438. </h3>
  4439. <p>
  4440. (<em>Appears on:</em>
  4441. <a href="#external-secrets.io/v1.Device42Auth">Device42Auth</a>)
  4442. </p>
  4443. <p>
  4444. </p>
  4445. <table>
  4446. <thead>
  4447. <tr>
  4448. <th>Field</th>
  4449. <th>Description</th>
  4450. </tr>
  4451. </thead>
  4452. <tbody>
  4453. <tr>
  4454. <td>
  4455. <code>credentials</code></br>
  4456. <em>
  4457. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4458. External Secrets meta/v1.SecretKeySelector
  4459. </a>
  4460. </em>
  4461. </td>
  4462. <td>
  4463. <em>(Optional)</em>
  4464. <p>Username / Password is used for authentication.</p>
  4465. </td>
  4466. </tr>
  4467. </tbody>
  4468. </table>
  4469. <h3 id="external-secrets.io/v1.DopplerAuth">DopplerAuth
  4470. </h3>
  4471. <p>
  4472. (<em>Appears on:</em>
  4473. <a href="#external-secrets.io/v1.DopplerProvider">DopplerProvider</a>)
  4474. </p>
  4475. <p>
  4476. </p>
  4477. <table>
  4478. <thead>
  4479. <tr>
  4480. <th>Field</th>
  4481. <th>Description</th>
  4482. </tr>
  4483. </thead>
  4484. <tbody>
  4485. <tr>
  4486. <td>
  4487. <code>secretRef</code></br>
  4488. <em>
  4489. <a href="#external-secrets.io/v1.DopplerAuthSecretRef">
  4490. DopplerAuthSecretRef
  4491. </a>
  4492. </em>
  4493. </td>
  4494. <td>
  4495. </td>
  4496. </tr>
  4497. </tbody>
  4498. </table>
  4499. <h3 id="external-secrets.io/v1.DopplerAuthSecretRef">DopplerAuthSecretRef
  4500. </h3>
  4501. <p>
  4502. (<em>Appears on:</em>
  4503. <a href="#external-secrets.io/v1.DopplerAuth">DopplerAuth</a>)
  4504. </p>
  4505. <p>
  4506. </p>
  4507. <table>
  4508. <thead>
  4509. <tr>
  4510. <th>Field</th>
  4511. <th>Description</th>
  4512. </tr>
  4513. </thead>
  4514. <tbody>
  4515. <tr>
  4516. <td>
  4517. <code>dopplerToken</code></br>
  4518. <em>
  4519. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4520. External Secrets meta/v1.SecretKeySelector
  4521. </a>
  4522. </em>
  4523. </td>
  4524. <td>
  4525. <p>The DopplerToken is used for authentication.
  4526. See <a href="https://docs.doppler.com/reference/api#authentication">https://docs.doppler.com/reference/api#authentication</a> for auth token types.
  4527. The Key attribute defaults to dopplerToken if not specified.</p>
  4528. </td>
  4529. </tr>
  4530. </tbody>
  4531. </table>
  4532. <h3 id="external-secrets.io/v1.DopplerProvider">DopplerProvider
  4533. </h3>
  4534. <p>
  4535. (<em>Appears on:</em>
  4536. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  4537. </p>
  4538. <p>
  4539. <p>DopplerProvider configures a store to sync secrets using the Doppler provider.
  4540. Project and Config are required if not using a Service Token.</p>
  4541. </p>
  4542. <table>
  4543. <thead>
  4544. <tr>
  4545. <th>Field</th>
  4546. <th>Description</th>
  4547. </tr>
  4548. </thead>
  4549. <tbody>
  4550. <tr>
  4551. <td>
  4552. <code>auth</code></br>
  4553. <em>
  4554. <a href="#external-secrets.io/v1.DopplerAuth">
  4555. DopplerAuth
  4556. </a>
  4557. </em>
  4558. </td>
  4559. <td>
  4560. <p>Auth configures how the Operator authenticates with the Doppler API</p>
  4561. </td>
  4562. </tr>
  4563. <tr>
  4564. <td>
  4565. <code>project</code></br>
  4566. <em>
  4567. string
  4568. </em>
  4569. </td>
  4570. <td>
  4571. <em>(Optional)</em>
  4572. <p>Doppler project (required if not using a Service Token)</p>
  4573. </td>
  4574. </tr>
  4575. <tr>
  4576. <td>
  4577. <code>config</code></br>
  4578. <em>
  4579. string
  4580. </em>
  4581. </td>
  4582. <td>
  4583. <em>(Optional)</em>
  4584. <p>Doppler config (required if not using a Service Token)</p>
  4585. </td>
  4586. </tr>
  4587. <tr>
  4588. <td>
  4589. <code>nameTransformer</code></br>
  4590. <em>
  4591. string
  4592. </em>
  4593. </td>
  4594. <td>
  4595. <em>(Optional)</em>
  4596. <p>Environment variable compatible name transforms that change secret names to a different format</p>
  4597. </td>
  4598. </tr>
  4599. <tr>
  4600. <td>
  4601. <code>format</code></br>
  4602. <em>
  4603. string
  4604. </em>
  4605. </td>
  4606. <td>
  4607. <em>(Optional)</em>
  4608. <p>Format enables the downloading of secrets as a file (string)</p>
  4609. </td>
  4610. </tr>
  4611. </tbody>
  4612. </table>
  4613. <h3 id="external-secrets.io/v1.ExternalSecret">ExternalSecret
  4614. </h3>
  4615. <p>
  4616. <p>ExternalSecret is the Schema for the external-secrets API.</p>
  4617. </p>
  4618. <table>
  4619. <thead>
  4620. <tr>
  4621. <th>Field</th>
  4622. <th>Description</th>
  4623. </tr>
  4624. </thead>
  4625. <tbody>
  4626. <tr>
  4627. <td>
  4628. <code>metadata</code></br>
  4629. <em>
  4630. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  4631. Kubernetes meta/v1.ObjectMeta
  4632. </a>
  4633. </em>
  4634. </td>
  4635. <td>
  4636. Refer to the Kubernetes API documentation for the fields of the
  4637. <code>metadata</code> field.
  4638. </td>
  4639. </tr>
  4640. <tr>
  4641. <td>
  4642. <code>spec</code></br>
  4643. <em>
  4644. <a href="#external-secrets.io/v1.ExternalSecretSpec">
  4645. ExternalSecretSpec
  4646. </a>
  4647. </em>
  4648. </td>
  4649. <td>
  4650. <br/>
  4651. <br/>
  4652. <table>
  4653. <tr>
  4654. <td>
  4655. <code>secretStoreRef</code></br>
  4656. <em>
  4657. <a href="#external-secrets.io/v1.SecretStoreRef">
  4658. SecretStoreRef
  4659. </a>
  4660. </em>
  4661. </td>
  4662. <td>
  4663. <em>(Optional)</em>
  4664. </td>
  4665. </tr>
  4666. <tr>
  4667. <td>
  4668. <code>target</code></br>
  4669. <em>
  4670. <a href="#external-secrets.io/v1.ExternalSecretTarget">
  4671. ExternalSecretTarget
  4672. </a>
  4673. </em>
  4674. </td>
  4675. <td>
  4676. <em>(Optional)</em>
  4677. </td>
  4678. </tr>
  4679. <tr>
  4680. <td>
  4681. <code>refreshPolicy</code></br>
  4682. <em>
  4683. <a href="#external-secrets.io/v1.ExternalSecretRefreshPolicy">
  4684. ExternalSecretRefreshPolicy
  4685. </a>
  4686. </em>
  4687. </td>
  4688. <td>
  4689. <em>(Optional)</em>
  4690. <p>RefreshPolicy determines how the ExternalSecret should be refreshed:
  4691. - CreatedOnce: Creates the Secret only if it does not exist and does not update it thereafter
  4692. - Periodic: Synchronizes the Secret from the external source at regular intervals specified by refreshInterval.
  4693. No periodic updates occur if refreshInterval is 0.
  4694. - OnChange: Only synchronizes the Secret when the ExternalSecret&rsquo;s metadata or specification changes</p>
  4695. </td>
  4696. </tr>
  4697. <tr>
  4698. <td>
  4699. <code>refreshInterval</code></br>
  4700. <em>
  4701. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  4702. Kubernetes meta/v1.Duration
  4703. </a>
  4704. </em>
  4705. </td>
  4706. <td>
  4707. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider,
  4708. specified as Golang Duration strings.
  4709. 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;
  4710. Example values: &ldquo;1h&rdquo;, &ldquo;2h30m&rdquo;, &ldquo;10s&rdquo;
  4711. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  4712. </td>
  4713. </tr>
  4714. <tr>
  4715. <td>
  4716. <code>data</code></br>
  4717. <em>
  4718. <a href="#external-secrets.io/v1.ExternalSecretData">
  4719. []ExternalSecretData
  4720. </a>
  4721. </em>
  4722. </td>
  4723. <td>
  4724. <em>(Optional)</em>
  4725. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  4726. </td>
  4727. </tr>
  4728. <tr>
  4729. <td>
  4730. <code>dataFrom</code></br>
  4731. <em>
  4732. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">
  4733. []ExternalSecretDataFromRemoteRef
  4734. </a>
  4735. </em>
  4736. </td>
  4737. <td>
  4738. <em>(Optional)</em>
  4739. <p>DataFrom is used to fetch all properties from a specific Provider data
  4740. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  4741. </td>
  4742. </tr>
  4743. </table>
  4744. </td>
  4745. </tr>
  4746. <tr>
  4747. <td>
  4748. <code>status</code></br>
  4749. <em>
  4750. <a href="#external-secrets.io/v1.ExternalSecretStatus">
  4751. ExternalSecretStatus
  4752. </a>
  4753. </em>
  4754. </td>
  4755. <td>
  4756. </td>
  4757. </tr>
  4758. </tbody>
  4759. </table>
  4760. <h3 id="external-secrets.io/v1.ExternalSecretConditionType">ExternalSecretConditionType
  4761. (<code>string</code> alias)</p></h3>
  4762. <p>
  4763. (<em>Appears on:</em>
  4764. <a href="#external-secrets.io/v1.ExternalSecretStatusCondition">ExternalSecretStatusCondition</a>)
  4765. </p>
  4766. <p>
  4767. </p>
  4768. <table>
  4769. <thead>
  4770. <tr>
  4771. <th>Value</th>
  4772. <th>Description</th>
  4773. </tr>
  4774. </thead>
  4775. <tbody><tr><td><p>&#34;Deleted&#34;</p></td>
  4776. <td></td>
  4777. </tr><tr><td><p>&#34;Ready&#34;</p></td>
  4778. <td></td>
  4779. </tr></tbody>
  4780. </table>
  4781. <h3 id="external-secrets.io/v1.ExternalSecretConversionStrategy">ExternalSecretConversionStrategy
  4782. (<code>string</code> alias)</p></h3>
  4783. <p>
  4784. (<em>Appears on:</em>
  4785. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>,
  4786. <a href="#external-secrets.io/v1.ExternalSecretFind">ExternalSecretFind</a>)
  4787. </p>
  4788. <p>
  4789. </p>
  4790. <table>
  4791. <thead>
  4792. <tr>
  4793. <th>Value</th>
  4794. <th>Description</th>
  4795. </tr>
  4796. </thead>
  4797. <tbody><tr><td><p>&#34;Default&#34;</p></td>
  4798. <td></td>
  4799. </tr><tr><td><p>&#34;Unicode&#34;</p></td>
  4800. <td></td>
  4801. </tr></tbody>
  4802. </table>
  4803. <h3 id="external-secrets.io/v1.ExternalSecretCreationPolicy">ExternalSecretCreationPolicy
  4804. (<code>string</code> alias)</p></h3>
  4805. <p>
  4806. (<em>Appears on:</em>
  4807. <a href="#external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget</a>)
  4808. </p>
  4809. <p>
  4810. <p>ExternalSecretCreationPolicy defines rules on how to create the resulting Secret.</p>
  4811. </p>
  4812. <table>
  4813. <thead>
  4814. <tr>
  4815. <th>Value</th>
  4816. <th>Description</th>
  4817. </tr>
  4818. </thead>
  4819. <tbody><tr><td><p>&#34;Merge&#34;</p></td>
  4820. <td><p>Merge does not create the Secret, but merges the data fields to the Secret.</p>
  4821. </td>
  4822. </tr><tr><td><p>&#34;None&#34;</p></td>
  4823. <td><p>None does not create a Secret (future use with injector).</p>
  4824. </td>
  4825. </tr><tr><td><p>&#34;Orphan&#34;</p></td>
  4826. <td><p>Orphan creates the Secret and does not set the ownerReference.
  4827. I.e. it will be orphaned after the deletion of the ExternalSecret.</p>
  4828. </td>
  4829. </tr><tr><td><p>&#34;Owner&#34;</p></td>
  4830. <td><p>Owner creates the Secret and sets .metadata.ownerReferences to the ExternalSecret resource.</p>
  4831. </td>
  4832. </tr></tbody>
  4833. </table>
  4834. <h3 id="external-secrets.io/v1.ExternalSecretData">ExternalSecretData
  4835. </h3>
  4836. <p>
  4837. (<em>Appears on:</em>
  4838. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>)
  4839. </p>
  4840. <p>
  4841. <p>ExternalSecretData defines the connection between the Kubernetes Secret key (spec.data.<key>) and the Provider data.</p>
  4842. </p>
  4843. <table>
  4844. <thead>
  4845. <tr>
  4846. <th>Field</th>
  4847. <th>Description</th>
  4848. </tr>
  4849. </thead>
  4850. <tbody>
  4851. <tr>
  4852. <td>
  4853. <code>secretKey</code></br>
  4854. <em>
  4855. string
  4856. </em>
  4857. </td>
  4858. <td>
  4859. <p>The key in the Kubernetes Secret to store the value.</p>
  4860. </td>
  4861. </tr>
  4862. <tr>
  4863. <td>
  4864. <code>remoteRef</code></br>
  4865. <em>
  4866. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">
  4867. ExternalSecretDataRemoteRef
  4868. </a>
  4869. </em>
  4870. </td>
  4871. <td>
  4872. <p>RemoteRef points to the remote secret and defines
  4873. which secret (version/property/..) to fetch.</p>
  4874. </td>
  4875. </tr>
  4876. <tr>
  4877. <td>
  4878. <code>sourceRef</code></br>
  4879. <em>
  4880. <a href="#external-secrets.io/v1.StoreSourceRef">
  4881. StoreSourceRef
  4882. </a>
  4883. </em>
  4884. </td>
  4885. <td>
  4886. <p>SourceRef allows you to override the source
  4887. from which the value will be pulled.</p>
  4888. </td>
  4889. </tr>
  4890. </tbody>
  4891. </table>
  4892. <h3 id="external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef
  4893. </h3>
  4894. <p>
  4895. (<em>Appears on:</em>
  4896. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>)
  4897. </p>
  4898. <p>
  4899. </p>
  4900. <table>
  4901. <thead>
  4902. <tr>
  4903. <th>Field</th>
  4904. <th>Description</th>
  4905. </tr>
  4906. </thead>
  4907. <tbody>
  4908. <tr>
  4909. <td>
  4910. <code>extract</code></br>
  4911. <em>
  4912. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">
  4913. ExternalSecretDataRemoteRef
  4914. </a>
  4915. </em>
  4916. </td>
  4917. <td>
  4918. <em>(Optional)</em>
  4919. <p>Used to extract multiple key/value pairs from one secret
  4920. Note: Extract does not support sourceRef.Generator or sourceRef.GeneratorRef.</p>
  4921. </td>
  4922. </tr>
  4923. <tr>
  4924. <td>
  4925. <code>find</code></br>
  4926. <em>
  4927. <a href="#external-secrets.io/v1.ExternalSecretFind">
  4928. ExternalSecretFind
  4929. </a>
  4930. </em>
  4931. </td>
  4932. <td>
  4933. <em>(Optional)</em>
  4934. <p>Used to find secrets based on tags or regular expressions
  4935. Note: Find does not support sourceRef.Generator or sourceRef.GeneratorRef.</p>
  4936. </td>
  4937. </tr>
  4938. <tr>
  4939. <td>
  4940. <code>rewrite</code></br>
  4941. <em>
  4942. <a href="#external-secrets.io/v1.ExternalSecretRewrite">
  4943. []ExternalSecretRewrite
  4944. </a>
  4945. </em>
  4946. </td>
  4947. <td>
  4948. <em>(Optional)</em>
  4949. <p>Used to rewrite secret Keys after getting them from the secret Provider
  4950. Multiple Rewrite operations can be provided. They are applied in a layered order (first to last)</p>
  4951. </td>
  4952. </tr>
  4953. <tr>
  4954. <td>
  4955. <code>sourceRef</code></br>
  4956. <em>
  4957. <a href="#external-secrets.io/v1.StoreGeneratorSourceRef">
  4958. StoreGeneratorSourceRef
  4959. </a>
  4960. </em>
  4961. </td>
  4962. <td>
  4963. <p>SourceRef points to a store or generator
  4964. which contains secret values ready to use.
  4965. Use this in combination with Extract or Find pull values out of
  4966. a specific SecretStore.
  4967. When sourceRef points to a generator Extract or Find is not supported.
  4968. The generator returns a static map of values</p>
  4969. </td>
  4970. </tr>
  4971. </tbody>
  4972. </table>
  4973. <h3 id="external-secrets.io/v1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef
  4974. </h3>
  4975. <p>
  4976. (<em>Appears on:</em>
  4977. <a href="#external-secrets.io/v1.ExternalSecretData">ExternalSecretData</a>,
  4978. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  4979. </p>
  4980. <p>
  4981. <p>ExternalSecretDataRemoteRef defines Provider data location.</p>
  4982. </p>
  4983. <table>
  4984. <thead>
  4985. <tr>
  4986. <th>Field</th>
  4987. <th>Description</th>
  4988. </tr>
  4989. </thead>
  4990. <tbody>
  4991. <tr>
  4992. <td>
  4993. <code>key</code></br>
  4994. <em>
  4995. string
  4996. </em>
  4997. </td>
  4998. <td>
  4999. <p>Key is the key used in the Provider, mandatory</p>
  5000. </td>
  5001. </tr>
  5002. <tr>
  5003. <td>
  5004. <code>metadataPolicy</code></br>
  5005. <em>
  5006. <a href="#external-secrets.io/v1.ExternalSecretMetadataPolicy">
  5007. ExternalSecretMetadataPolicy
  5008. </a>
  5009. </em>
  5010. </td>
  5011. <td>
  5012. <em>(Optional)</em>
  5013. <p>Policy for fetching tags/labels from provider secrets, possible options are Fetch, None. Defaults to None</p>
  5014. </td>
  5015. </tr>
  5016. <tr>
  5017. <td>
  5018. <code>property</code></br>
  5019. <em>
  5020. string
  5021. </em>
  5022. </td>
  5023. <td>
  5024. <em>(Optional)</em>
  5025. <p>Used to select a specific property of the Provider value (if a map), if supported</p>
  5026. </td>
  5027. </tr>
  5028. <tr>
  5029. <td>
  5030. <code>version</code></br>
  5031. <em>
  5032. string
  5033. </em>
  5034. </td>
  5035. <td>
  5036. <em>(Optional)</em>
  5037. <p>Used to select a specific version of the Provider value, if supported</p>
  5038. </td>
  5039. </tr>
  5040. <tr>
  5041. <td>
  5042. <code>conversionStrategy</code></br>
  5043. <em>
  5044. <a href="#external-secrets.io/v1.ExternalSecretConversionStrategy">
  5045. ExternalSecretConversionStrategy
  5046. </a>
  5047. </em>
  5048. </td>
  5049. <td>
  5050. <em>(Optional)</em>
  5051. <p>Used to define a conversion Strategy</p>
  5052. </td>
  5053. </tr>
  5054. <tr>
  5055. <td>
  5056. <code>decodingStrategy</code></br>
  5057. <em>
  5058. <a href="#external-secrets.io/v1.ExternalSecretDecodingStrategy">
  5059. ExternalSecretDecodingStrategy
  5060. </a>
  5061. </em>
  5062. </td>
  5063. <td>
  5064. <em>(Optional)</em>
  5065. <p>Used to define a decoding Strategy</p>
  5066. </td>
  5067. </tr>
  5068. </tbody>
  5069. </table>
  5070. <h3 id="external-secrets.io/v1.ExternalSecretDecodingStrategy">ExternalSecretDecodingStrategy
  5071. (<code>string</code> alias)</p></h3>
  5072. <p>
  5073. (<em>Appears on:</em>
  5074. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>,
  5075. <a href="#external-secrets.io/v1.ExternalSecretFind">ExternalSecretFind</a>)
  5076. </p>
  5077. <p>
  5078. </p>
  5079. <table>
  5080. <thead>
  5081. <tr>
  5082. <th>Value</th>
  5083. <th>Description</th>
  5084. </tr>
  5085. </thead>
  5086. <tbody><tr><td><p>&#34;Auto&#34;</p></td>
  5087. <td></td>
  5088. </tr><tr><td><p>&#34;Base64&#34;</p></td>
  5089. <td></td>
  5090. </tr><tr><td><p>&#34;Base64URL&#34;</p></td>
  5091. <td></td>
  5092. </tr><tr><td><p>&#34;None&#34;</p></td>
  5093. <td></td>
  5094. </tr></tbody>
  5095. </table>
  5096. <h3 id="external-secrets.io/v1.ExternalSecretDeletionPolicy">ExternalSecretDeletionPolicy
  5097. (<code>string</code> alias)</p></h3>
  5098. <p>
  5099. (<em>Appears on:</em>
  5100. <a href="#external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget</a>)
  5101. </p>
  5102. <p>
  5103. <p>ExternalSecretDeletionPolicy defines rules on how to delete the resulting Secret.</p>
  5104. </p>
  5105. <table>
  5106. <thead>
  5107. <tr>
  5108. <th>Value</th>
  5109. <th>Description</th>
  5110. </tr>
  5111. </thead>
  5112. <tbody><tr><td><p>&#34;Delete&#34;</p></td>
  5113. <td><p>Delete deletes the secret if all provider secrets are deleted.
  5114. If a secret gets deleted on the provider side and is not accessible
  5115. anymore this is not considered an error and the ExternalSecret
  5116. does not go into SecretSyncedError status.</p>
  5117. </td>
  5118. </tr><tr><td><p>&#34;Merge&#34;</p></td>
  5119. <td><p>Merge removes keys in the secret, but not the secret itself.
  5120. If a secret gets deleted on the provider side and is not accessible
  5121. anymore this is not considered an error and the ExternalSecret
  5122. does not go into SecretSyncedError status.</p>
  5123. </td>
  5124. </tr><tr><td><p>&#34;Retain&#34;</p></td>
  5125. <td><p>Retain will retain the secret if all provider secrets have been deleted.
  5126. If a provider secret does not exist the ExternalSecret gets into the
  5127. SecretSyncedError status.</p>
  5128. </td>
  5129. </tr></tbody>
  5130. </table>
  5131. <h3 id="external-secrets.io/v1.ExternalSecretFind">ExternalSecretFind
  5132. </h3>
  5133. <p>
  5134. (<em>Appears on:</em>
  5135. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  5136. </p>
  5137. <p>
  5138. </p>
  5139. <table>
  5140. <thead>
  5141. <tr>
  5142. <th>Field</th>
  5143. <th>Description</th>
  5144. </tr>
  5145. </thead>
  5146. <tbody>
  5147. <tr>
  5148. <td>
  5149. <code>path</code></br>
  5150. <em>
  5151. string
  5152. </em>
  5153. </td>
  5154. <td>
  5155. <em>(Optional)</em>
  5156. <p>A root path to start the find operations.</p>
  5157. </td>
  5158. </tr>
  5159. <tr>
  5160. <td>
  5161. <code>name</code></br>
  5162. <em>
  5163. <a href="#external-secrets.io/v1.FindName">
  5164. FindName
  5165. </a>
  5166. </em>
  5167. </td>
  5168. <td>
  5169. <em>(Optional)</em>
  5170. <p>Finds secrets based on the name.</p>
  5171. </td>
  5172. </tr>
  5173. <tr>
  5174. <td>
  5175. <code>tags</code></br>
  5176. <em>
  5177. map[string]string
  5178. </em>
  5179. </td>
  5180. <td>
  5181. <em>(Optional)</em>
  5182. <p>Find secrets based on tags.</p>
  5183. </td>
  5184. </tr>
  5185. <tr>
  5186. <td>
  5187. <code>conversionStrategy</code></br>
  5188. <em>
  5189. <a href="#external-secrets.io/v1.ExternalSecretConversionStrategy">
  5190. ExternalSecretConversionStrategy
  5191. </a>
  5192. </em>
  5193. </td>
  5194. <td>
  5195. <em>(Optional)</em>
  5196. <p>Used to define a conversion Strategy</p>
  5197. </td>
  5198. </tr>
  5199. <tr>
  5200. <td>
  5201. <code>decodingStrategy</code></br>
  5202. <em>
  5203. <a href="#external-secrets.io/v1.ExternalSecretDecodingStrategy">
  5204. ExternalSecretDecodingStrategy
  5205. </a>
  5206. </em>
  5207. </td>
  5208. <td>
  5209. <em>(Optional)</em>
  5210. <p>Used to define a decoding Strategy</p>
  5211. </td>
  5212. </tr>
  5213. </tbody>
  5214. </table>
  5215. <h3 id="external-secrets.io/v1.ExternalSecretMetadata">ExternalSecretMetadata
  5216. </h3>
  5217. <p>
  5218. (<em>Appears on:</em>
  5219. <a href="#external-secrets.io/v1.ClusterExternalSecretSpec">ClusterExternalSecretSpec</a>)
  5220. </p>
  5221. <p>
  5222. <p>ExternalSecretMetadata defines metadata fields for the ExternalSecret generated by the ClusterExternalSecret.</p>
  5223. </p>
  5224. <table>
  5225. <thead>
  5226. <tr>
  5227. <th>Field</th>
  5228. <th>Description</th>
  5229. </tr>
  5230. </thead>
  5231. <tbody>
  5232. <tr>
  5233. <td>
  5234. <code>annotations</code></br>
  5235. <em>
  5236. map[string]string
  5237. </em>
  5238. </td>
  5239. <td>
  5240. <em>(Optional)</em>
  5241. </td>
  5242. </tr>
  5243. <tr>
  5244. <td>
  5245. <code>labels</code></br>
  5246. <em>
  5247. map[string]string
  5248. </em>
  5249. </td>
  5250. <td>
  5251. <em>(Optional)</em>
  5252. </td>
  5253. </tr>
  5254. </tbody>
  5255. </table>
  5256. <h3 id="external-secrets.io/v1.ExternalSecretMetadataPolicy">ExternalSecretMetadataPolicy
  5257. (<code>string</code> alias)</p></h3>
  5258. <p>
  5259. (<em>Appears on:</em>
  5260. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>)
  5261. </p>
  5262. <p>
  5263. </p>
  5264. <table>
  5265. <thead>
  5266. <tr>
  5267. <th>Value</th>
  5268. <th>Description</th>
  5269. </tr>
  5270. </thead>
  5271. <tbody><tr><td><p>&#34;Fetch&#34;</p></td>
  5272. <td></td>
  5273. </tr><tr><td><p>&#34;None&#34;</p></td>
  5274. <td></td>
  5275. </tr></tbody>
  5276. </table>
  5277. <h3 id="external-secrets.io/v1.ExternalSecretRefreshPolicy">ExternalSecretRefreshPolicy
  5278. (<code>string</code> alias)</p></h3>
  5279. <p>
  5280. (<em>Appears on:</em>
  5281. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>)
  5282. </p>
  5283. <p>
  5284. </p>
  5285. <table>
  5286. <thead>
  5287. <tr>
  5288. <th>Value</th>
  5289. <th>Description</th>
  5290. </tr>
  5291. </thead>
  5292. <tbody><tr><td><p>&#34;CreatedOnce&#34;</p></td>
  5293. <td></td>
  5294. </tr><tr><td><p>&#34;OnChange&#34;</p></td>
  5295. <td></td>
  5296. </tr><tr><td><p>&#34;Periodic&#34;</p></td>
  5297. <td></td>
  5298. </tr></tbody>
  5299. </table>
  5300. <h3 id="external-secrets.io/v1.ExternalSecretRewrite">ExternalSecretRewrite
  5301. </h3>
  5302. <p>
  5303. (<em>Appears on:</em>
  5304. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  5305. </p>
  5306. <p>
  5307. </p>
  5308. <table>
  5309. <thead>
  5310. <tr>
  5311. <th>Field</th>
  5312. <th>Description</th>
  5313. </tr>
  5314. </thead>
  5315. <tbody>
  5316. <tr>
  5317. <td>
  5318. <code>merge</code></br>
  5319. <em>
  5320. <a href="#external-secrets.io/v1.ExternalSecretRewriteMerge">
  5321. ExternalSecretRewriteMerge
  5322. </a>
  5323. </em>
  5324. </td>
  5325. <td>
  5326. <em>(Optional)</em>
  5327. <p>Used to merge key/values in one single Secret
  5328. The resulting key will contain all values from the specified secrets</p>
  5329. </td>
  5330. </tr>
  5331. <tr>
  5332. <td>
  5333. <code>regexp</code></br>
  5334. <em>
  5335. <a href="#external-secrets.io/v1.ExternalSecretRewriteRegexp">
  5336. ExternalSecretRewriteRegexp
  5337. </a>
  5338. </em>
  5339. </td>
  5340. <td>
  5341. <em>(Optional)</em>
  5342. <p>Used to rewrite with regular expressions.
  5343. The resulting key will be the output of a regexp.ReplaceAll operation.</p>
  5344. </td>
  5345. </tr>
  5346. <tr>
  5347. <td>
  5348. <code>transform</code></br>
  5349. <em>
  5350. <a href="#external-secrets.io/v1.ExternalSecretRewriteTransform">
  5351. ExternalSecretRewriteTransform
  5352. </a>
  5353. </em>
  5354. </td>
  5355. <td>
  5356. <em>(Optional)</em>
  5357. <p>Used to apply string transformation on the secrets.
  5358. The resulting key will be the output of the template applied by the operation.</p>
  5359. </td>
  5360. </tr>
  5361. </tbody>
  5362. </table>
  5363. <h3 id="external-secrets.io/v1.ExternalSecretRewriteMerge">ExternalSecretRewriteMerge
  5364. </h3>
  5365. <p>
  5366. (<em>Appears on:</em>
  5367. <a href="#external-secrets.io/v1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  5368. </p>
  5369. <p>
  5370. </p>
  5371. <table>
  5372. <thead>
  5373. <tr>
  5374. <th>Field</th>
  5375. <th>Description</th>
  5376. </tr>
  5377. </thead>
  5378. <tbody>
  5379. <tr>
  5380. <td>
  5381. <code>into</code></br>
  5382. <em>
  5383. string
  5384. </em>
  5385. </td>
  5386. <td>
  5387. <em>(Optional)</em>
  5388. <p>Used to define the target key of the merge operation.
  5389. Required if strategy is JSON. Ignored otherwise.</p>
  5390. </td>
  5391. </tr>
  5392. <tr>
  5393. <td>
  5394. <code>priority</code></br>
  5395. <em>
  5396. []string
  5397. </em>
  5398. </td>
  5399. <td>
  5400. <em>(Optional)</em>
  5401. <p>Used to define key priority in conflict resolution.</p>
  5402. </td>
  5403. </tr>
  5404. <tr>
  5405. <td>
  5406. <code>conflictPolicy</code></br>
  5407. <em>
  5408. <a href="#external-secrets.io/v1.ExternalSecretRewriteMergeConflictPolicy">
  5409. ExternalSecretRewriteMergeConflictPolicy
  5410. </a>
  5411. </em>
  5412. </td>
  5413. <td>
  5414. <em>(Optional)</em>
  5415. <p>Used to define the policy to use in conflict resolution.</p>
  5416. </td>
  5417. </tr>
  5418. <tr>
  5419. <td>
  5420. <code>strategy</code></br>
  5421. <em>
  5422. <a href="#external-secrets.io/v1.ExternalSecretRewriteMergeStrategy">
  5423. ExternalSecretRewriteMergeStrategy
  5424. </a>
  5425. </em>
  5426. </td>
  5427. <td>
  5428. <em>(Optional)</em>
  5429. <p>Used to define the strategy to use in the merge operation.</p>
  5430. </td>
  5431. </tr>
  5432. </tbody>
  5433. </table>
  5434. <h3 id="external-secrets.io/v1.ExternalSecretRewriteMergeConflictPolicy">ExternalSecretRewriteMergeConflictPolicy
  5435. (<code>string</code> alias)</p></h3>
  5436. <p>
  5437. (<em>Appears on:</em>
  5438. <a href="#external-secrets.io/v1.ExternalSecretRewriteMerge">ExternalSecretRewriteMerge</a>)
  5439. </p>
  5440. <p>
  5441. </p>
  5442. <table>
  5443. <thead>
  5444. <tr>
  5445. <th>Value</th>
  5446. <th>Description</th>
  5447. </tr>
  5448. </thead>
  5449. <tbody><tr><td><p>&#34;Error&#34;</p></td>
  5450. <td></td>
  5451. </tr><tr><td><p>&#34;Ignore&#34;</p></td>
  5452. <td></td>
  5453. </tr></tbody>
  5454. </table>
  5455. <h3 id="external-secrets.io/v1.ExternalSecretRewriteMergeStrategy">ExternalSecretRewriteMergeStrategy
  5456. (<code>string</code> alias)</p></h3>
  5457. <p>
  5458. (<em>Appears on:</em>
  5459. <a href="#external-secrets.io/v1.ExternalSecretRewriteMerge">ExternalSecretRewriteMerge</a>)
  5460. </p>
  5461. <p>
  5462. </p>
  5463. <table>
  5464. <thead>
  5465. <tr>
  5466. <th>Value</th>
  5467. <th>Description</th>
  5468. </tr>
  5469. </thead>
  5470. <tbody><tr><td><p>&#34;Extract&#34;</p></td>
  5471. <td></td>
  5472. </tr><tr><td><p>&#34;JSON&#34;</p></td>
  5473. <td></td>
  5474. </tr></tbody>
  5475. </table>
  5476. <h3 id="external-secrets.io/v1.ExternalSecretRewriteRegexp">ExternalSecretRewriteRegexp
  5477. </h3>
  5478. <p>
  5479. (<em>Appears on:</em>
  5480. <a href="#external-secrets.io/v1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  5481. </p>
  5482. <p>
  5483. </p>
  5484. <table>
  5485. <thead>
  5486. <tr>
  5487. <th>Field</th>
  5488. <th>Description</th>
  5489. </tr>
  5490. </thead>
  5491. <tbody>
  5492. <tr>
  5493. <td>
  5494. <code>source</code></br>
  5495. <em>
  5496. string
  5497. </em>
  5498. </td>
  5499. <td>
  5500. <p>Used to define the regular expression of a re.Compiler.</p>
  5501. </td>
  5502. </tr>
  5503. <tr>
  5504. <td>
  5505. <code>target</code></br>
  5506. <em>
  5507. string
  5508. </em>
  5509. </td>
  5510. <td>
  5511. <p>Used to define the target pattern of a ReplaceAll operation.</p>
  5512. </td>
  5513. </tr>
  5514. </tbody>
  5515. </table>
  5516. <h3 id="external-secrets.io/v1.ExternalSecretRewriteTransform">ExternalSecretRewriteTransform
  5517. </h3>
  5518. <p>
  5519. (<em>Appears on:</em>
  5520. <a href="#external-secrets.io/v1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  5521. </p>
  5522. <p>
  5523. </p>
  5524. <table>
  5525. <thead>
  5526. <tr>
  5527. <th>Field</th>
  5528. <th>Description</th>
  5529. </tr>
  5530. </thead>
  5531. <tbody>
  5532. <tr>
  5533. <td>
  5534. <code>template</code></br>
  5535. <em>
  5536. string
  5537. </em>
  5538. </td>
  5539. <td>
  5540. <p>Used to define the template to apply on the secret name.
  5541. <code>.value</code> will specify the secret name in the template.</p>
  5542. </td>
  5543. </tr>
  5544. </tbody>
  5545. </table>
  5546. <h3 id="external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec
  5547. </h3>
  5548. <p>
  5549. (<em>Appears on:</em>
  5550. <a href="#external-secrets.io/v1.ClusterExternalSecretSpec">ClusterExternalSecretSpec</a>,
  5551. <a href="#external-secrets.io/v1.ExternalSecret">ExternalSecret</a>)
  5552. </p>
  5553. <p>
  5554. <p>ExternalSecretSpec defines the desired state of ExternalSecret.</p>
  5555. </p>
  5556. <table>
  5557. <thead>
  5558. <tr>
  5559. <th>Field</th>
  5560. <th>Description</th>
  5561. </tr>
  5562. </thead>
  5563. <tbody>
  5564. <tr>
  5565. <td>
  5566. <code>secretStoreRef</code></br>
  5567. <em>
  5568. <a href="#external-secrets.io/v1.SecretStoreRef">
  5569. SecretStoreRef
  5570. </a>
  5571. </em>
  5572. </td>
  5573. <td>
  5574. <em>(Optional)</em>
  5575. </td>
  5576. </tr>
  5577. <tr>
  5578. <td>
  5579. <code>target</code></br>
  5580. <em>
  5581. <a href="#external-secrets.io/v1.ExternalSecretTarget">
  5582. ExternalSecretTarget
  5583. </a>
  5584. </em>
  5585. </td>
  5586. <td>
  5587. <em>(Optional)</em>
  5588. </td>
  5589. </tr>
  5590. <tr>
  5591. <td>
  5592. <code>refreshPolicy</code></br>
  5593. <em>
  5594. <a href="#external-secrets.io/v1.ExternalSecretRefreshPolicy">
  5595. ExternalSecretRefreshPolicy
  5596. </a>
  5597. </em>
  5598. </td>
  5599. <td>
  5600. <em>(Optional)</em>
  5601. <p>RefreshPolicy determines how the ExternalSecret should be refreshed:
  5602. - CreatedOnce: Creates the Secret only if it does not exist and does not update it thereafter
  5603. - Periodic: Synchronizes the Secret from the external source at regular intervals specified by refreshInterval.
  5604. No periodic updates occur if refreshInterval is 0.
  5605. - OnChange: Only synchronizes the Secret when the ExternalSecret&rsquo;s metadata or specification changes</p>
  5606. </td>
  5607. </tr>
  5608. <tr>
  5609. <td>
  5610. <code>refreshInterval</code></br>
  5611. <em>
  5612. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  5613. Kubernetes meta/v1.Duration
  5614. </a>
  5615. </em>
  5616. </td>
  5617. <td>
  5618. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider,
  5619. specified as Golang Duration strings.
  5620. 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;
  5621. Example values: &ldquo;1h&rdquo;, &ldquo;2h30m&rdquo;, &ldquo;10s&rdquo;
  5622. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  5623. </td>
  5624. </tr>
  5625. <tr>
  5626. <td>
  5627. <code>data</code></br>
  5628. <em>
  5629. <a href="#external-secrets.io/v1.ExternalSecretData">
  5630. []ExternalSecretData
  5631. </a>
  5632. </em>
  5633. </td>
  5634. <td>
  5635. <em>(Optional)</em>
  5636. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  5637. </td>
  5638. </tr>
  5639. <tr>
  5640. <td>
  5641. <code>dataFrom</code></br>
  5642. <em>
  5643. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">
  5644. []ExternalSecretDataFromRemoteRef
  5645. </a>
  5646. </em>
  5647. </td>
  5648. <td>
  5649. <em>(Optional)</em>
  5650. <p>DataFrom is used to fetch all properties from a specific Provider data
  5651. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  5652. </td>
  5653. </tr>
  5654. </tbody>
  5655. </table>
  5656. <h3 id="external-secrets.io/v1.ExternalSecretStatus">ExternalSecretStatus
  5657. </h3>
  5658. <p>
  5659. (<em>Appears on:</em>
  5660. <a href="#external-secrets.io/v1.ExternalSecret">ExternalSecret</a>)
  5661. </p>
  5662. <p>
  5663. </p>
  5664. <table>
  5665. <thead>
  5666. <tr>
  5667. <th>Field</th>
  5668. <th>Description</th>
  5669. </tr>
  5670. </thead>
  5671. <tbody>
  5672. <tr>
  5673. <td>
  5674. <code>refreshTime</code></br>
  5675. <em>
  5676. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  5677. Kubernetes meta/v1.Time
  5678. </a>
  5679. </em>
  5680. </td>
  5681. <td>
  5682. <p>refreshTime is the time and date the external secret was fetched and
  5683. the target secret updated</p>
  5684. </td>
  5685. </tr>
  5686. <tr>
  5687. <td>
  5688. <code>syncedResourceVersion</code></br>
  5689. <em>
  5690. string
  5691. </em>
  5692. </td>
  5693. <td>
  5694. <p>SyncedResourceVersion keeps track of the last synced version</p>
  5695. </td>
  5696. </tr>
  5697. <tr>
  5698. <td>
  5699. <code>conditions</code></br>
  5700. <em>
  5701. <a href="#external-secrets.io/v1.ExternalSecretStatusCondition">
  5702. []ExternalSecretStatusCondition
  5703. </a>
  5704. </em>
  5705. </td>
  5706. <td>
  5707. <em>(Optional)</em>
  5708. </td>
  5709. </tr>
  5710. <tr>
  5711. <td>
  5712. <code>binding</code></br>
  5713. <em>
  5714. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#localobjectreference-v1-core">
  5715. Kubernetes core/v1.LocalObjectReference
  5716. </a>
  5717. </em>
  5718. </td>
  5719. <td>
  5720. <p>Binding represents a servicebinding.io Provisioned Service reference to the secret</p>
  5721. </td>
  5722. </tr>
  5723. </tbody>
  5724. </table>
  5725. <h3 id="external-secrets.io/v1.ExternalSecretStatusCondition">ExternalSecretStatusCondition
  5726. </h3>
  5727. <p>
  5728. (<em>Appears on:</em>
  5729. <a href="#external-secrets.io/v1.ExternalSecretStatus">ExternalSecretStatus</a>)
  5730. </p>
  5731. <p>
  5732. </p>
  5733. <table>
  5734. <thead>
  5735. <tr>
  5736. <th>Field</th>
  5737. <th>Description</th>
  5738. </tr>
  5739. </thead>
  5740. <tbody>
  5741. <tr>
  5742. <td>
  5743. <code>type</code></br>
  5744. <em>
  5745. <a href="#external-secrets.io/v1.ExternalSecretConditionType">
  5746. ExternalSecretConditionType
  5747. </a>
  5748. </em>
  5749. </td>
  5750. <td>
  5751. </td>
  5752. </tr>
  5753. <tr>
  5754. <td>
  5755. <code>status</code></br>
  5756. <em>
  5757. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  5758. Kubernetes core/v1.ConditionStatus
  5759. </a>
  5760. </em>
  5761. </td>
  5762. <td>
  5763. </td>
  5764. </tr>
  5765. <tr>
  5766. <td>
  5767. <code>reason</code></br>
  5768. <em>
  5769. string
  5770. </em>
  5771. </td>
  5772. <td>
  5773. <em>(Optional)</em>
  5774. </td>
  5775. </tr>
  5776. <tr>
  5777. <td>
  5778. <code>message</code></br>
  5779. <em>
  5780. string
  5781. </em>
  5782. </td>
  5783. <td>
  5784. <em>(Optional)</em>
  5785. </td>
  5786. </tr>
  5787. <tr>
  5788. <td>
  5789. <code>lastTransitionTime</code></br>
  5790. <em>
  5791. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  5792. Kubernetes meta/v1.Time
  5793. </a>
  5794. </em>
  5795. </td>
  5796. <td>
  5797. <em>(Optional)</em>
  5798. </td>
  5799. </tr>
  5800. </tbody>
  5801. </table>
  5802. <h3 id="external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget
  5803. </h3>
  5804. <p>
  5805. (<em>Appears on:</em>
  5806. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>)
  5807. </p>
  5808. <p>
  5809. <p>ExternalSecretTarget defines the Kubernetes Secret to be created
  5810. There can be only one target per ExternalSecret.</p>
  5811. </p>
  5812. <table>
  5813. <thead>
  5814. <tr>
  5815. <th>Field</th>
  5816. <th>Description</th>
  5817. </tr>
  5818. </thead>
  5819. <tbody>
  5820. <tr>
  5821. <td>
  5822. <code>name</code></br>
  5823. <em>
  5824. string
  5825. </em>
  5826. </td>
  5827. <td>
  5828. <em>(Optional)</em>
  5829. <p>The name of the Secret resource to be managed.
  5830. Defaults to the .metadata.name of the ExternalSecret resource</p>
  5831. </td>
  5832. </tr>
  5833. <tr>
  5834. <td>
  5835. <code>creationPolicy</code></br>
  5836. <em>
  5837. <a href="#external-secrets.io/v1.ExternalSecretCreationPolicy">
  5838. ExternalSecretCreationPolicy
  5839. </a>
  5840. </em>
  5841. </td>
  5842. <td>
  5843. <em>(Optional)</em>
  5844. <p>CreationPolicy defines rules on how to create the resulting Secret.
  5845. Defaults to &ldquo;Owner&rdquo;</p>
  5846. </td>
  5847. </tr>
  5848. <tr>
  5849. <td>
  5850. <code>deletionPolicy</code></br>
  5851. <em>
  5852. <a href="#external-secrets.io/v1.ExternalSecretDeletionPolicy">
  5853. ExternalSecretDeletionPolicy
  5854. </a>
  5855. </em>
  5856. </td>
  5857. <td>
  5858. <em>(Optional)</em>
  5859. <p>DeletionPolicy defines rules on how to delete the resulting Secret.
  5860. Defaults to &ldquo;Retain&rdquo;</p>
  5861. </td>
  5862. </tr>
  5863. <tr>
  5864. <td>
  5865. <code>template</code></br>
  5866. <em>
  5867. <a href="#external-secrets.io/v1.ExternalSecretTemplate">
  5868. ExternalSecretTemplate
  5869. </a>
  5870. </em>
  5871. </td>
  5872. <td>
  5873. <em>(Optional)</em>
  5874. <p>Template defines a blueprint for the created Secret resource.</p>
  5875. </td>
  5876. </tr>
  5877. <tr>
  5878. <td>
  5879. <code>immutable</code></br>
  5880. <em>
  5881. bool
  5882. </em>
  5883. </td>
  5884. <td>
  5885. <em>(Optional)</em>
  5886. <p>Immutable defines if the final secret will be immutable</p>
  5887. </td>
  5888. </tr>
  5889. </tbody>
  5890. </table>
  5891. <h3 id="external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate
  5892. </h3>
  5893. <p>
  5894. (<em>Appears on:</em>
  5895. <a href="#external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget</a>)
  5896. </p>
  5897. <p>
  5898. <p>ExternalSecretTemplate defines a blueprint for the created Secret resource.
  5899. 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>
  5900. </p>
  5901. <table>
  5902. <thead>
  5903. <tr>
  5904. <th>Field</th>
  5905. <th>Description</th>
  5906. </tr>
  5907. </thead>
  5908. <tbody>
  5909. <tr>
  5910. <td>
  5911. <code>type</code></br>
  5912. <em>
  5913. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#secrettype-v1-core">
  5914. Kubernetes core/v1.SecretType
  5915. </a>
  5916. </em>
  5917. </td>
  5918. <td>
  5919. <em>(Optional)</em>
  5920. </td>
  5921. </tr>
  5922. <tr>
  5923. <td>
  5924. <code>engineVersion</code></br>
  5925. <em>
  5926. <a href="#external-secrets.io/v1.TemplateEngineVersion">
  5927. TemplateEngineVersion
  5928. </a>
  5929. </em>
  5930. </td>
  5931. <td>
  5932. <p>EngineVersion specifies the template engine version
  5933. that should be used to compile/execute the
  5934. template specified in .data and .templateFrom[].</p>
  5935. </td>
  5936. </tr>
  5937. <tr>
  5938. <td>
  5939. <code>metadata</code></br>
  5940. <em>
  5941. <a href="#external-secrets.io/v1.ExternalSecretTemplateMetadata">
  5942. ExternalSecretTemplateMetadata
  5943. </a>
  5944. </em>
  5945. </td>
  5946. <td>
  5947. <em>(Optional)</em>
  5948. </td>
  5949. </tr>
  5950. <tr>
  5951. <td>
  5952. <code>mergePolicy</code></br>
  5953. <em>
  5954. <a href="#external-secrets.io/v1.TemplateMergePolicy">
  5955. TemplateMergePolicy
  5956. </a>
  5957. </em>
  5958. </td>
  5959. <td>
  5960. </td>
  5961. </tr>
  5962. <tr>
  5963. <td>
  5964. <code>data</code></br>
  5965. <em>
  5966. map[string]string
  5967. </em>
  5968. </td>
  5969. <td>
  5970. <em>(Optional)</em>
  5971. </td>
  5972. </tr>
  5973. <tr>
  5974. <td>
  5975. <code>templateFrom</code></br>
  5976. <em>
  5977. <a href="#external-secrets.io/v1.TemplateFrom">
  5978. []TemplateFrom
  5979. </a>
  5980. </em>
  5981. </td>
  5982. <td>
  5983. <em>(Optional)</em>
  5984. </td>
  5985. </tr>
  5986. </tbody>
  5987. </table>
  5988. <h3 id="external-secrets.io/v1.ExternalSecretTemplateMetadata">ExternalSecretTemplateMetadata
  5989. </h3>
  5990. <p>
  5991. (<em>Appears on:</em>
  5992. <a href="#external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  5993. </p>
  5994. <p>
  5995. <p>ExternalSecretTemplateMetadata defines metadata fields for the Secret blueprint.</p>
  5996. </p>
  5997. <table>
  5998. <thead>
  5999. <tr>
  6000. <th>Field</th>
  6001. <th>Description</th>
  6002. </tr>
  6003. </thead>
  6004. <tbody>
  6005. <tr>
  6006. <td>
  6007. <code>annotations</code></br>
  6008. <em>
  6009. map[string]string
  6010. </em>
  6011. </td>
  6012. <td>
  6013. <em>(Optional)</em>
  6014. </td>
  6015. </tr>
  6016. <tr>
  6017. <td>
  6018. <code>labels</code></br>
  6019. <em>
  6020. map[string]string
  6021. </em>
  6022. </td>
  6023. <td>
  6024. <em>(Optional)</em>
  6025. </td>
  6026. </tr>
  6027. <tr>
  6028. <td>
  6029. <code>finalizers</code></br>
  6030. <em>
  6031. []string
  6032. </em>
  6033. </td>
  6034. <td>
  6035. <em>(Optional)</em>
  6036. </td>
  6037. </tr>
  6038. </tbody>
  6039. </table>
  6040. <h3 id="external-secrets.io/v1.ExternalSecretValidator">ExternalSecretValidator
  6041. </h3>
  6042. <p>
  6043. </p>
  6044. <h3 id="external-secrets.io/v1.FakeProvider">FakeProvider
  6045. </h3>
  6046. <p>
  6047. (<em>Appears on:</em>
  6048. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6049. </p>
  6050. <p>
  6051. <p>FakeProvider configures a fake provider that returns static values.</p>
  6052. </p>
  6053. <table>
  6054. <thead>
  6055. <tr>
  6056. <th>Field</th>
  6057. <th>Description</th>
  6058. </tr>
  6059. </thead>
  6060. <tbody>
  6061. <tr>
  6062. <td>
  6063. <code>data</code></br>
  6064. <em>
  6065. <a href="#external-secrets.io/v1.FakeProviderData">
  6066. []FakeProviderData
  6067. </a>
  6068. </em>
  6069. </td>
  6070. <td>
  6071. </td>
  6072. </tr>
  6073. <tr>
  6074. <td>
  6075. <code>validationResult</code></br>
  6076. <em>
  6077. <a href="#external-secrets.io/v1.ValidationResult">
  6078. ValidationResult
  6079. </a>
  6080. </em>
  6081. </td>
  6082. <td>
  6083. </td>
  6084. </tr>
  6085. </tbody>
  6086. </table>
  6087. <h3 id="external-secrets.io/v1.FakeProviderData">FakeProviderData
  6088. </h3>
  6089. <p>
  6090. (<em>Appears on:</em>
  6091. <a href="#external-secrets.io/v1.FakeProvider">FakeProvider</a>)
  6092. </p>
  6093. <p>
  6094. </p>
  6095. <table>
  6096. <thead>
  6097. <tr>
  6098. <th>Field</th>
  6099. <th>Description</th>
  6100. </tr>
  6101. </thead>
  6102. <tbody>
  6103. <tr>
  6104. <td>
  6105. <code>key</code></br>
  6106. <em>
  6107. string
  6108. </em>
  6109. </td>
  6110. <td>
  6111. </td>
  6112. </tr>
  6113. <tr>
  6114. <td>
  6115. <code>value</code></br>
  6116. <em>
  6117. string
  6118. </em>
  6119. </td>
  6120. <td>
  6121. </td>
  6122. </tr>
  6123. <tr>
  6124. <td>
  6125. <code>version</code></br>
  6126. <em>
  6127. string
  6128. </em>
  6129. </td>
  6130. <td>
  6131. </td>
  6132. </tr>
  6133. </tbody>
  6134. </table>
  6135. <h3 id="external-secrets.io/v1.FetchingPolicy">FetchingPolicy
  6136. </h3>
  6137. <p>
  6138. (<em>Appears on:</em>
  6139. <a href="#external-secrets.io/v1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>,
  6140. <a href="#external-secrets.io/v1.YandexLockboxProvider">YandexLockboxProvider</a>)
  6141. </p>
  6142. <p>
  6143. </p>
  6144. <table>
  6145. <thead>
  6146. <tr>
  6147. <th>Field</th>
  6148. <th>Description</th>
  6149. </tr>
  6150. </thead>
  6151. <tbody>
  6152. <tr>
  6153. <td>
  6154. <code>byID</code></br>
  6155. <em>
  6156. <a href="#external-secrets.io/v1.ByID">
  6157. ByID
  6158. </a>
  6159. </em>
  6160. </td>
  6161. <td>
  6162. </td>
  6163. </tr>
  6164. <tr>
  6165. <td>
  6166. <code>byName</code></br>
  6167. <em>
  6168. <a href="#external-secrets.io/v1.ByName">
  6169. ByName
  6170. </a>
  6171. </em>
  6172. </td>
  6173. <td>
  6174. </td>
  6175. </tr>
  6176. </tbody>
  6177. </table>
  6178. <h3 id="external-secrets.io/v1.FindName">FindName
  6179. </h3>
  6180. <p>
  6181. (<em>Appears on:</em>
  6182. <a href="#external-secrets.io/v1.ExternalSecretFind">ExternalSecretFind</a>)
  6183. </p>
  6184. <p>
  6185. </p>
  6186. <table>
  6187. <thead>
  6188. <tr>
  6189. <th>Field</th>
  6190. <th>Description</th>
  6191. </tr>
  6192. </thead>
  6193. <tbody>
  6194. <tr>
  6195. <td>
  6196. <code>regexp</code></br>
  6197. <em>
  6198. string
  6199. </em>
  6200. </td>
  6201. <td>
  6202. <em>(Optional)</em>
  6203. <p>Finds secrets base</p>
  6204. </td>
  6205. </tr>
  6206. </tbody>
  6207. </table>
  6208. <h3 id="external-secrets.io/v1.FortanixProvider">FortanixProvider
  6209. </h3>
  6210. <p>
  6211. (<em>Appears on:</em>
  6212. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6213. </p>
  6214. <p>
  6215. </p>
  6216. <table>
  6217. <thead>
  6218. <tr>
  6219. <th>Field</th>
  6220. <th>Description</th>
  6221. </tr>
  6222. </thead>
  6223. <tbody>
  6224. <tr>
  6225. <td>
  6226. <code>apiUrl</code></br>
  6227. <em>
  6228. string
  6229. </em>
  6230. </td>
  6231. <td>
  6232. <p>APIURL is the URL of SDKMS API. Defaults to <code>sdkms.fortanix.com</code>.</p>
  6233. </td>
  6234. </tr>
  6235. <tr>
  6236. <td>
  6237. <code>apiKey</code></br>
  6238. <em>
  6239. <a href="#external-secrets.io/v1.FortanixProviderSecretRef">
  6240. FortanixProviderSecretRef
  6241. </a>
  6242. </em>
  6243. </td>
  6244. <td>
  6245. <p>APIKey is the API token to access SDKMS Applications.</p>
  6246. </td>
  6247. </tr>
  6248. </tbody>
  6249. </table>
  6250. <h3 id="external-secrets.io/v1.FortanixProviderSecretRef">FortanixProviderSecretRef
  6251. </h3>
  6252. <p>
  6253. (<em>Appears on:</em>
  6254. <a href="#external-secrets.io/v1.FortanixProvider">FortanixProvider</a>)
  6255. </p>
  6256. <p>
  6257. </p>
  6258. <table>
  6259. <thead>
  6260. <tr>
  6261. <th>Field</th>
  6262. <th>Description</th>
  6263. </tr>
  6264. </thead>
  6265. <tbody>
  6266. <tr>
  6267. <td>
  6268. <code>secretRef</code></br>
  6269. <em>
  6270. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6271. External Secrets meta/v1.SecretKeySelector
  6272. </a>
  6273. </em>
  6274. </td>
  6275. <td>
  6276. <p>SecretRef is a reference to a secret containing the SDKMS API Key.</p>
  6277. </td>
  6278. </tr>
  6279. </tbody>
  6280. </table>
  6281. <h3 id="external-secrets.io/v1.GCPSMAuth">GCPSMAuth
  6282. </h3>
  6283. <p>
  6284. (<em>Appears on:</em>
  6285. <a href="#external-secrets.io/v1.GCPSMProvider">GCPSMProvider</a>)
  6286. </p>
  6287. <p>
  6288. </p>
  6289. <table>
  6290. <thead>
  6291. <tr>
  6292. <th>Field</th>
  6293. <th>Description</th>
  6294. </tr>
  6295. </thead>
  6296. <tbody>
  6297. <tr>
  6298. <td>
  6299. <code>secretRef</code></br>
  6300. <em>
  6301. <a href="#external-secrets.io/v1.GCPSMAuthSecretRef">
  6302. GCPSMAuthSecretRef
  6303. </a>
  6304. </em>
  6305. </td>
  6306. <td>
  6307. <em>(Optional)</em>
  6308. </td>
  6309. </tr>
  6310. <tr>
  6311. <td>
  6312. <code>workloadIdentity</code></br>
  6313. <em>
  6314. <a href="#external-secrets.io/v1.GCPWorkloadIdentity">
  6315. GCPWorkloadIdentity
  6316. </a>
  6317. </em>
  6318. </td>
  6319. <td>
  6320. <em>(Optional)</em>
  6321. </td>
  6322. </tr>
  6323. <tr>
  6324. <td>
  6325. <code>workloadIdentityFederation</code></br>
  6326. <em>
  6327. <a href="#external-secrets.io/v1.GCPWorkloadIdentityFederation">
  6328. GCPWorkloadIdentityFederation
  6329. </a>
  6330. </em>
  6331. </td>
  6332. <td>
  6333. <em>(Optional)</em>
  6334. </td>
  6335. </tr>
  6336. </tbody>
  6337. </table>
  6338. <h3 id="external-secrets.io/v1.GCPSMAuthSecretRef">GCPSMAuthSecretRef
  6339. </h3>
  6340. <p>
  6341. (<em>Appears on:</em>
  6342. <a href="#external-secrets.io/v1.GCPSMAuth">GCPSMAuth</a>)
  6343. </p>
  6344. <p>
  6345. </p>
  6346. <table>
  6347. <thead>
  6348. <tr>
  6349. <th>Field</th>
  6350. <th>Description</th>
  6351. </tr>
  6352. </thead>
  6353. <tbody>
  6354. <tr>
  6355. <td>
  6356. <code>secretAccessKeySecretRef</code></br>
  6357. <em>
  6358. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6359. External Secrets meta/v1.SecretKeySelector
  6360. </a>
  6361. </em>
  6362. </td>
  6363. <td>
  6364. <em>(Optional)</em>
  6365. <p>The SecretAccessKey is used for authentication</p>
  6366. </td>
  6367. </tr>
  6368. </tbody>
  6369. </table>
  6370. <h3 id="external-secrets.io/v1.GCPSMProvider">GCPSMProvider
  6371. </h3>
  6372. <p>
  6373. (<em>Appears on:</em>
  6374. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6375. </p>
  6376. <p>
  6377. <p>GCPSMProvider Configures a store to sync secrets using the GCP Secret Manager provider.</p>
  6378. </p>
  6379. <table>
  6380. <thead>
  6381. <tr>
  6382. <th>Field</th>
  6383. <th>Description</th>
  6384. </tr>
  6385. </thead>
  6386. <tbody>
  6387. <tr>
  6388. <td>
  6389. <code>auth</code></br>
  6390. <em>
  6391. <a href="#external-secrets.io/v1.GCPSMAuth">
  6392. GCPSMAuth
  6393. </a>
  6394. </em>
  6395. </td>
  6396. <td>
  6397. <em>(Optional)</em>
  6398. <p>Auth defines the information necessary to authenticate against GCP</p>
  6399. </td>
  6400. </tr>
  6401. <tr>
  6402. <td>
  6403. <code>projectID</code></br>
  6404. <em>
  6405. string
  6406. </em>
  6407. </td>
  6408. <td>
  6409. <p>ProjectID project where secret is located</p>
  6410. </td>
  6411. </tr>
  6412. <tr>
  6413. <td>
  6414. <code>location</code></br>
  6415. <em>
  6416. string
  6417. </em>
  6418. </td>
  6419. <td>
  6420. <p>Location optionally defines a location for a secret</p>
  6421. </td>
  6422. </tr>
  6423. </tbody>
  6424. </table>
  6425. <h3 id="external-secrets.io/v1.GCPWorkloadIdentity">GCPWorkloadIdentity
  6426. </h3>
  6427. <p>
  6428. (<em>Appears on:</em>
  6429. <a href="#external-secrets.io/v1.GCPSMAuth">GCPSMAuth</a>)
  6430. </p>
  6431. <p>
  6432. </p>
  6433. <table>
  6434. <thead>
  6435. <tr>
  6436. <th>Field</th>
  6437. <th>Description</th>
  6438. </tr>
  6439. </thead>
  6440. <tbody>
  6441. <tr>
  6442. <td>
  6443. <code>serviceAccountRef</code></br>
  6444. <em>
  6445. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  6446. External Secrets meta/v1.ServiceAccountSelector
  6447. </a>
  6448. </em>
  6449. </td>
  6450. <td>
  6451. </td>
  6452. </tr>
  6453. <tr>
  6454. <td>
  6455. <code>clusterLocation</code></br>
  6456. <em>
  6457. string
  6458. </em>
  6459. </td>
  6460. <td>
  6461. <em>(Optional)</em>
  6462. <p>ClusterLocation is the location of the cluster
  6463. If not specified, it fetches information from the metadata server</p>
  6464. </td>
  6465. </tr>
  6466. <tr>
  6467. <td>
  6468. <code>clusterName</code></br>
  6469. <em>
  6470. string
  6471. </em>
  6472. </td>
  6473. <td>
  6474. <em>(Optional)</em>
  6475. <p>ClusterName is the name of the cluster
  6476. If not specified, it fetches information from the metadata server</p>
  6477. </td>
  6478. </tr>
  6479. <tr>
  6480. <td>
  6481. <code>clusterProjectID</code></br>
  6482. <em>
  6483. string
  6484. </em>
  6485. </td>
  6486. <td>
  6487. <em>(Optional)</em>
  6488. <p>ClusterProjectID is the project ID of the cluster
  6489. If not specified, it fetches information from the metadata server</p>
  6490. </td>
  6491. </tr>
  6492. </tbody>
  6493. </table>
  6494. <h3 id="external-secrets.io/v1.GCPWorkloadIdentityFederation">GCPWorkloadIdentityFederation
  6495. </h3>
  6496. <p>
  6497. (<em>Appears on:</em>
  6498. <a href="#external-secrets.io/v1.GCPSMAuth">GCPSMAuth</a>)
  6499. </p>
  6500. <p>
  6501. <p>GCPWorkloadIdentityFederation holds the configurations required for generating federated access tokens.</p>
  6502. </p>
  6503. <table>
  6504. <thead>
  6505. <tr>
  6506. <th>Field</th>
  6507. <th>Description</th>
  6508. </tr>
  6509. </thead>
  6510. <tbody>
  6511. <tr>
  6512. <td>
  6513. <code>credConfig</code></br>
  6514. <em>
  6515. <a href="#external-secrets.io/v1.ConfigMapReference">
  6516. ConfigMapReference
  6517. </a>
  6518. </em>
  6519. </td>
  6520. <td>
  6521. <p>credConfig holds the configmap reference containing the GCP external account credential configuration in JSON format and the key name containing the json data.
  6522. For using Kubernetes cluster as the identity provider, use serviceAccountRef instead. Operators mounted serviceaccount token cannot be used as the token source, instead
  6523. serviceAccountRef must be used by providing operators service account details.</p>
  6524. </td>
  6525. </tr>
  6526. <tr>
  6527. <td>
  6528. <code>serviceAccountRef</code></br>
  6529. <em>
  6530. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  6531. External Secrets meta/v1.ServiceAccountSelector
  6532. </a>
  6533. </em>
  6534. </td>
  6535. <td>
  6536. <p>serviceAccountRef is the reference to the kubernetes ServiceAccount to be used for obtaining the tokens,
  6537. when Kubernetes is configured as provider in workload identity pool.</p>
  6538. </td>
  6539. </tr>
  6540. <tr>
  6541. <td>
  6542. <code>awsSecurityCredentials</code></br>
  6543. <em>
  6544. <a href="#external-secrets.io/v1.AwsCredentialsConfig">
  6545. AwsCredentialsConfig
  6546. </a>
  6547. </em>
  6548. </td>
  6549. <td>
  6550. <p>awsSecurityCredentials is for configuring AWS region and credentials to use for obtaining the access token,
  6551. when using the AWS metadata server is not an option.</p>
  6552. </td>
  6553. </tr>
  6554. <tr>
  6555. <td>
  6556. <code>audience</code></br>
  6557. <em>
  6558. string
  6559. </em>
  6560. </td>
  6561. <td>
  6562. <p>audience is the Secure Token Service (STS) audience which contains the resource name for the workload identity pool and the provider identifier in that pool.
  6563. If specified, Audience found in the external account credential config will be overridden with the configured value.
  6564. audience must be provided when serviceAccountRef or awsSecurityCredentials is configured.</p>
  6565. </td>
  6566. </tr>
  6567. <tr>
  6568. <td>
  6569. <code>externalTokenEndpoint</code></br>
  6570. <em>
  6571. string
  6572. </em>
  6573. </td>
  6574. <td>
  6575. <p>externalTokenEndpoint is the endpoint explicitly set up to provide tokens, which will be matched against the
  6576. credential_source.url in the provided credConfig. This field is merely to double-check the external token source
  6577. URL is having the expected value.</p>
  6578. </td>
  6579. </tr>
  6580. </tbody>
  6581. </table>
  6582. <h3 id="external-secrets.io/v1.GcpIamAuthCredentials">GcpIamAuthCredentials
  6583. </h3>
  6584. <p>
  6585. (<em>Appears on:</em>
  6586. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  6587. </p>
  6588. <p>
  6589. </p>
  6590. <table>
  6591. <thead>
  6592. <tr>
  6593. <th>Field</th>
  6594. <th>Description</th>
  6595. </tr>
  6596. </thead>
  6597. <tbody>
  6598. <tr>
  6599. <td>
  6600. <code>identityId</code></br>
  6601. <em>
  6602. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6603. External Secrets meta/v1.SecretKeySelector
  6604. </a>
  6605. </em>
  6606. </td>
  6607. <td>
  6608. </td>
  6609. </tr>
  6610. <tr>
  6611. <td>
  6612. <code>serviceAccountKeyFilePath</code></br>
  6613. <em>
  6614. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6615. External Secrets meta/v1.SecretKeySelector
  6616. </a>
  6617. </em>
  6618. </td>
  6619. <td>
  6620. </td>
  6621. </tr>
  6622. </tbody>
  6623. </table>
  6624. <h3 id="external-secrets.io/v1.GcpIdTokenAuthCredentials">GcpIdTokenAuthCredentials
  6625. </h3>
  6626. <p>
  6627. (<em>Appears on:</em>
  6628. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  6629. </p>
  6630. <p>
  6631. </p>
  6632. <table>
  6633. <thead>
  6634. <tr>
  6635. <th>Field</th>
  6636. <th>Description</th>
  6637. </tr>
  6638. </thead>
  6639. <tbody>
  6640. <tr>
  6641. <td>
  6642. <code>identityId</code></br>
  6643. <em>
  6644. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6645. External Secrets meta/v1.SecretKeySelector
  6646. </a>
  6647. </em>
  6648. </td>
  6649. <td>
  6650. </td>
  6651. </tr>
  6652. </tbody>
  6653. </table>
  6654. <h3 id="external-secrets.io/v1.GeneratorRef">GeneratorRef
  6655. </h3>
  6656. <p>
  6657. (<em>Appears on:</em>
  6658. <a href="#external-secrets.io/v1.StoreGeneratorSourceRef">StoreGeneratorSourceRef</a>,
  6659. <a href="#external-secrets.io/v1.StoreSourceRef">StoreSourceRef</a>)
  6660. </p>
  6661. <p>
  6662. <p>GeneratorRef points to a generator custom resource.</p>
  6663. </p>
  6664. <table>
  6665. <thead>
  6666. <tr>
  6667. <th>Field</th>
  6668. <th>Description</th>
  6669. </tr>
  6670. </thead>
  6671. <tbody>
  6672. <tr>
  6673. <td>
  6674. <code>apiVersion</code></br>
  6675. <em>
  6676. string
  6677. </em>
  6678. </td>
  6679. <td>
  6680. <p>Specify the apiVersion of the generator resource</p>
  6681. </td>
  6682. </tr>
  6683. <tr>
  6684. <td>
  6685. <code>kind</code></br>
  6686. <em>
  6687. string
  6688. </em>
  6689. </td>
  6690. <td>
  6691. <p>Specify the Kind of the generator resource</p>
  6692. </td>
  6693. </tr>
  6694. <tr>
  6695. <td>
  6696. <code>name</code></br>
  6697. <em>
  6698. string
  6699. </em>
  6700. </td>
  6701. <td>
  6702. <p>Specify the name of the generator resource</p>
  6703. </td>
  6704. </tr>
  6705. </tbody>
  6706. </table>
  6707. <h3 id="external-secrets.io/v1.GenericStore">GenericStore
  6708. </h3>
  6709. <p>
  6710. <p>GenericStore is a common interface for interacting with ClusterSecretStore
  6711. or a namespaced SecretStore.</p>
  6712. </p>
  6713. <h3 id="external-secrets.io/v1.GenericStoreValidator">GenericStoreValidator
  6714. </h3>
  6715. <p>
  6716. </p>
  6717. <h3 id="external-secrets.io/v1.GithubAppAuth">GithubAppAuth
  6718. </h3>
  6719. <p>
  6720. (<em>Appears on:</em>
  6721. <a href="#external-secrets.io/v1.GithubProvider">GithubProvider</a>)
  6722. </p>
  6723. <p>
  6724. </p>
  6725. <table>
  6726. <thead>
  6727. <tr>
  6728. <th>Field</th>
  6729. <th>Description</th>
  6730. </tr>
  6731. </thead>
  6732. <tbody>
  6733. <tr>
  6734. <td>
  6735. <code>privateKey</code></br>
  6736. <em>
  6737. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6738. External Secrets meta/v1.SecretKeySelector
  6739. </a>
  6740. </em>
  6741. </td>
  6742. <td>
  6743. </td>
  6744. </tr>
  6745. </tbody>
  6746. </table>
  6747. <h3 id="external-secrets.io/v1.GithubProvider">GithubProvider
  6748. </h3>
  6749. <p>
  6750. (<em>Appears on:</em>
  6751. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6752. </p>
  6753. <p>
  6754. <p>Configures a store to push secrets to Github Actions.</p>
  6755. </p>
  6756. <table>
  6757. <thead>
  6758. <tr>
  6759. <th>Field</th>
  6760. <th>Description</th>
  6761. </tr>
  6762. </thead>
  6763. <tbody>
  6764. <tr>
  6765. <td>
  6766. <code>url</code></br>
  6767. <em>
  6768. string
  6769. </em>
  6770. </td>
  6771. <td>
  6772. <p>URL configures the Github instance URL. Defaults to <a href="https://github.com/">https://github.com/</a>.</p>
  6773. </td>
  6774. </tr>
  6775. <tr>
  6776. <td>
  6777. <code>uploadURL</code></br>
  6778. <em>
  6779. string
  6780. </em>
  6781. </td>
  6782. <td>
  6783. <em>(Optional)</em>
  6784. <p>Upload URL for enterprise instances. Default to URL.</p>
  6785. </td>
  6786. </tr>
  6787. <tr>
  6788. <td>
  6789. <code>auth</code></br>
  6790. <em>
  6791. <a href="#external-secrets.io/v1.GithubAppAuth">
  6792. GithubAppAuth
  6793. </a>
  6794. </em>
  6795. </td>
  6796. <td>
  6797. <p>auth configures how secret-manager authenticates with a Github instance.</p>
  6798. </td>
  6799. </tr>
  6800. <tr>
  6801. <td>
  6802. <code>appID</code></br>
  6803. <em>
  6804. int64
  6805. </em>
  6806. </td>
  6807. <td>
  6808. <p>appID specifies the Github APP that will be used to authenticate the client</p>
  6809. </td>
  6810. </tr>
  6811. <tr>
  6812. <td>
  6813. <code>installationID</code></br>
  6814. <em>
  6815. int64
  6816. </em>
  6817. </td>
  6818. <td>
  6819. <p>installationID specifies the Github APP installation that will be used to authenticate the client</p>
  6820. </td>
  6821. </tr>
  6822. <tr>
  6823. <td>
  6824. <code>organization</code></br>
  6825. <em>
  6826. string
  6827. </em>
  6828. </td>
  6829. <td>
  6830. <p>organization will be used to fetch secrets from the Github organization</p>
  6831. </td>
  6832. </tr>
  6833. <tr>
  6834. <td>
  6835. <code>repository</code></br>
  6836. <em>
  6837. string
  6838. </em>
  6839. </td>
  6840. <td>
  6841. <em>(Optional)</em>
  6842. <p>repository will be used to fetch secrets from the Github repository within an organization</p>
  6843. </td>
  6844. </tr>
  6845. <tr>
  6846. <td>
  6847. <code>environment</code></br>
  6848. <em>
  6849. string
  6850. </em>
  6851. </td>
  6852. <td>
  6853. <em>(Optional)</em>
  6854. <p>environment will be used to fetch secrets from a particular environment within a github repository</p>
  6855. </td>
  6856. </tr>
  6857. </tbody>
  6858. </table>
  6859. <h3 id="external-secrets.io/v1.GitlabAuth">GitlabAuth
  6860. </h3>
  6861. <p>
  6862. (<em>Appears on:</em>
  6863. <a href="#external-secrets.io/v1.GitlabProvider">GitlabProvider</a>)
  6864. </p>
  6865. <p>
  6866. </p>
  6867. <table>
  6868. <thead>
  6869. <tr>
  6870. <th>Field</th>
  6871. <th>Description</th>
  6872. </tr>
  6873. </thead>
  6874. <tbody>
  6875. <tr>
  6876. <td>
  6877. <code>SecretRef</code></br>
  6878. <em>
  6879. <a href="#external-secrets.io/v1.GitlabSecretRef">
  6880. GitlabSecretRef
  6881. </a>
  6882. </em>
  6883. </td>
  6884. <td>
  6885. </td>
  6886. </tr>
  6887. </tbody>
  6888. </table>
  6889. <h3 id="external-secrets.io/v1.GitlabProvider">GitlabProvider
  6890. </h3>
  6891. <p>
  6892. (<em>Appears on:</em>
  6893. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6894. </p>
  6895. <p>
  6896. <p>Configures a store to sync secrets with a GitLab instance.</p>
  6897. </p>
  6898. <table>
  6899. <thead>
  6900. <tr>
  6901. <th>Field</th>
  6902. <th>Description</th>
  6903. </tr>
  6904. </thead>
  6905. <tbody>
  6906. <tr>
  6907. <td>
  6908. <code>url</code></br>
  6909. <em>
  6910. string
  6911. </em>
  6912. </td>
  6913. <td>
  6914. <p>URL configures the GitLab instance URL. Defaults to <a href="https://gitlab.com/">https://gitlab.com/</a>.</p>
  6915. </td>
  6916. </tr>
  6917. <tr>
  6918. <td>
  6919. <code>auth</code></br>
  6920. <em>
  6921. <a href="#external-secrets.io/v1.GitlabAuth">
  6922. GitlabAuth
  6923. </a>
  6924. </em>
  6925. </td>
  6926. <td>
  6927. <p>Auth configures how secret-manager authenticates with a GitLab instance.</p>
  6928. </td>
  6929. </tr>
  6930. <tr>
  6931. <td>
  6932. <code>projectID</code></br>
  6933. <em>
  6934. string
  6935. </em>
  6936. </td>
  6937. <td>
  6938. <p>ProjectID specifies a project where secrets are located.</p>
  6939. </td>
  6940. </tr>
  6941. <tr>
  6942. <td>
  6943. <code>inheritFromGroups</code></br>
  6944. <em>
  6945. bool
  6946. </em>
  6947. </td>
  6948. <td>
  6949. <p>InheritFromGroups specifies whether parent groups should be discovered and checked for secrets.</p>
  6950. </td>
  6951. </tr>
  6952. <tr>
  6953. <td>
  6954. <code>groupIDs</code></br>
  6955. <em>
  6956. []string
  6957. </em>
  6958. </td>
  6959. <td>
  6960. <p>GroupIDs specify, which gitlab groups to pull secrets from. Group secrets are read from left to right followed by the project variables.</p>
  6961. </td>
  6962. </tr>
  6963. <tr>
  6964. <td>
  6965. <code>environment</code></br>
  6966. <em>
  6967. string
  6968. </em>
  6969. </td>
  6970. <td>
  6971. <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>
  6972. </td>
  6973. </tr>
  6974. <tr>
  6975. <td>
  6976. <code>caBundle</code></br>
  6977. <em>
  6978. []byte
  6979. </em>
  6980. </td>
  6981. <td>
  6982. <em>(Optional)</em>
  6983. <p>Base64 encoded certificate for the GitLab server sdk. The sdk MUST run with HTTPS to make sure no MITM attack
  6984. can be performed.</p>
  6985. </td>
  6986. </tr>
  6987. <tr>
  6988. <td>
  6989. <code>caProvider</code></br>
  6990. <em>
  6991. <a href="#external-secrets.io/v1.CAProvider">
  6992. CAProvider
  6993. </a>
  6994. </em>
  6995. </td>
  6996. <td>
  6997. <em>(Optional)</em>
  6998. <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>
  6999. </td>
  7000. </tr>
  7001. </tbody>
  7002. </table>
  7003. <h3 id="external-secrets.io/v1.GitlabSecretRef">GitlabSecretRef
  7004. </h3>
  7005. <p>
  7006. (<em>Appears on:</em>
  7007. <a href="#external-secrets.io/v1.GitlabAuth">GitlabAuth</a>)
  7008. </p>
  7009. <p>
  7010. </p>
  7011. <table>
  7012. <thead>
  7013. <tr>
  7014. <th>Field</th>
  7015. <th>Description</th>
  7016. </tr>
  7017. </thead>
  7018. <tbody>
  7019. <tr>
  7020. <td>
  7021. <code>accessToken</code></br>
  7022. <em>
  7023. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7024. External Secrets meta/v1.SecretKeySelector
  7025. </a>
  7026. </em>
  7027. </td>
  7028. <td>
  7029. <p>AccessToken is used for authentication.</p>
  7030. </td>
  7031. </tr>
  7032. </tbody>
  7033. </table>
  7034. <h3 id="external-secrets.io/v1.IBMAuth">IBMAuth
  7035. </h3>
  7036. <p>
  7037. (<em>Appears on:</em>
  7038. <a href="#external-secrets.io/v1.IBMProvider">IBMProvider</a>)
  7039. </p>
  7040. <p>
  7041. </p>
  7042. <table>
  7043. <thead>
  7044. <tr>
  7045. <th>Field</th>
  7046. <th>Description</th>
  7047. </tr>
  7048. </thead>
  7049. <tbody>
  7050. <tr>
  7051. <td>
  7052. <code>secretRef</code></br>
  7053. <em>
  7054. <a href="#external-secrets.io/v1.IBMAuthSecretRef">
  7055. IBMAuthSecretRef
  7056. </a>
  7057. </em>
  7058. </td>
  7059. <td>
  7060. </td>
  7061. </tr>
  7062. <tr>
  7063. <td>
  7064. <code>containerAuth</code></br>
  7065. <em>
  7066. <a href="#external-secrets.io/v1.IBMAuthContainerAuth">
  7067. IBMAuthContainerAuth
  7068. </a>
  7069. </em>
  7070. </td>
  7071. <td>
  7072. </td>
  7073. </tr>
  7074. </tbody>
  7075. </table>
  7076. <h3 id="external-secrets.io/v1.IBMAuthContainerAuth">IBMAuthContainerAuth
  7077. </h3>
  7078. <p>
  7079. (<em>Appears on:</em>
  7080. <a href="#external-secrets.io/v1.IBMAuth">IBMAuth</a>)
  7081. </p>
  7082. <p>
  7083. <p>IBM Container-based auth with IAM Trusted Profile.</p>
  7084. </p>
  7085. <table>
  7086. <thead>
  7087. <tr>
  7088. <th>Field</th>
  7089. <th>Description</th>
  7090. </tr>
  7091. </thead>
  7092. <tbody>
  7093. <tr>
  7094. <td>
  7095. <code>profile</code></br>
  7096. <em>
  7097. string
  7098. </em>
  7099. </td>
  7100. <td>
  7101. <p>the IBM Trusted Profile</p>
  7102. </td>
  7103. </tr>
  7104. <tr>
  7105. <td>
  7106. <code>tokenLocation</code></br>
  7107. <em>
  7108. string
  7109. </em>
  7110. </td>
  7111. <td>
  7112. <p>Location the token is mounted on the pod</p>
  7113. </td>
  7114. </tr>
  7115. <tr>
  7116. <td>
  7117. <code>iamEndpoint</code></br>
  7118. <em>
  7119. string
  7120. </em>
  7121. </td>
  7122. <td>
  7123. </td>
  7124. </tr>
  7125. </tbody>
  7126. </table>
  7127. <h3 id="external-secrets.io/v1.IBMAuthSecretRef">IBMAuthSecretRef
  7128. </h3>
  7129. <p>
  7130. (<em>Appears on:</em>
  7131. <a href="#external-secrets.io/v1.IBMAuth">IBMAuth</a>)
  7132. </p>
  7133. <p>
  7134. </p>
  7135. <table>
  7136. <thead>
  7137. <tr>
  7138. <th>Field</th>
  7139. <th>Description</th>
  7140. </tr>
  7141. </thead>
  7142. <tbody>
  7143. <tr>
  7144. <td>
  7145. <code>secretApiKeySecretRef</code></br>
  7146. <em>
  7147. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7148. External Secrets meta/v1.SecretKeySelector
  7149. </a>
  7150. </em>
  7151. </td>
  7152. <td>
  7153. <p>The SecretAccessKey is used for authentication</p>
  7154. </td>
  7155. </tr>
  7156. </tbody>
  7157. </table>
  7158. <h3 id="external-secrets.io/v1.IBMProvider">IBMProvider
  7159. </h3>
  7160. <p>
  7161. (<em>Appears on:</em>
  7162. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7163. </p>
  7164. <p>
  7165. <p>Configures an store to sync secrets using a IBM Cloud Secrets Manager
  7166. backend.</p>
  7167. </p>
  7168. <table>
  7169. <thead>
  7170. <tr>
  7171. <th>Field</th>
  7172. <th>Description</th>
  7173. </tr>
  7174. </thead>
  7175. <tbody>
  7176. <tr>
  7177. <td>
  7178. <code>auth</code></br>
  7179. <em>
  7180. <a href="#external-secrets.io/v1.IBMAuth">
  7181. IBMAuth
  7182. </a>
  7183. </em>
  7184. </td>
  7185. <td>
  7186. <p>Auth configures how secret-manager authenticates with the IBM secrets manager.</p>
  7187. </td>
  7188. </tr>
  7189. <tr>
  7190. <td>
  7191. <code>serviceUrl</code></br>
  7192. <em>
  7193. string
  7194. </em>
  7195. </td>
  7196. <td>
  7197. <p>ServiceURL is the Endpoint URL that is specific to the Secrets Manager service instance</p>
  7198. </td>
  7199. </tr>
  7200. </tbody>
  7201. </table>
  7202. <h3 id="external-secrets.io/v1.InfisicalAuth">InfisicalAuth
  7203. </h3>
  7204. <p>
  7205. (<em>Appears on:</em>
  7206. <a href="#external-secrets.io/v1.InfisicalProvider">InfisicalProvider</a>)
  7207. </p>
  7208. <p>
  7209. </p>
  7210. <table>
  7211. <thead>
  7212. <tr>
  7213. <th>Field</th>
  7214. <th>Description</th>
  7215. </tr>
  7216. </thead>
  7217. <tbody>
  7218. <tr>
  7219. <td>
  7220. <code>universalAuthCredentials</code></br>
  7221. <em>
  7222. <a href="#external-secrets.io/v1.UniversalAuthCredentials">
  7223. UniversalAuthCredentials
  7224. </a>
  7225. </em>
  7226. </td>
  7227. <td>
  7228. <em>(Optional)</em>
  7229. </td>
  7230. </tr>
  7231. <tr>
  7232. <td>
  7233. <code>azureAuthCredentials</code></br>
  7234. <em>
  7235. <a href="#external-secrets.io/v1.AzureAuthCredentials">
  7236. AzureAuthCredentials
  7237. </a>
  7238. </em>
  7239. </td>
  7240. <td>
  7241. <em>(Optional)</em>
  7242. </td>
  7243. </tr>
  7244. <tr>
  7245. <td>
  7246. <code>gcpIdTokenAuthCredentials</code></br>
  7247. <em>
  7248. <a href="#external-secrets.io/v1.GcpIdTokenAuthCredentials">
  7249. GcpIdTokenAuthCredentials
  7250. </a>
  7251. </em>
  7252. </td>
  7253. <td>
  7254. <em>(Optional)</em>
  7255. </td>
  7256. </tr>
  7257. <tr>
  7258. <td>
  7259. <code>gcpIamAuthCredentials</code></br>
  7260. <em>
  7261. <a href="#external-secrets.io/v1.GcpIamAuthCredentials">
  7262. GcpIamAuthCredentials
  7263. </a>
  7264. </em>
  7265. </td>
  7266. <td>
  7267. <em>(Optional)</em>
  7268. </td>
  7269. </tr>
  7270. <tr>
  7271. <td>
  7272. <code>jwtAuthCredentials</code></br>
  7273. <em>
  7274. <a href="#external-secrets.io/v1.JwtAuthCredentials">
  7275. JwtAuthCredentials
  7276. </a>
  7277. </em>
  7278. </td>
  7279. <td>
  7280. <em>(Optional)</em>
  7281. </td>
  7282. </tr>
  7283. <tr>
  7284. <td>
  7285. <code>ldapAuthCredentials</code></br>
  7286. <em>
  7287. <a href="#external-secrets.io/v1.LdapAuthCredentials">
  7288. LdapAuthCredentials
  7289. </a>
  7290. </em>
  7291. </td>
  7292. <td>
  7293. <em>(Optional)</em>
  7294. </td>
  7295. </tr>
  7296. <tr>
  7297. <td>
  7298. <code>ociAuthCredentials</code></br>
  7299. <em>
  7300. <a href="#external-secrets.io/v1.OciAuthCredentials">
  7301. OciAuthCredentials
  7302. </a>
  7303. </em>
  7304. </td>
  7305. <td>
  7306. <em>(Optional)</em>
  7307. </td>
  7308. </tr>
  7309. <tr>
  7310. <td>
  7311. <code>kubernetesAuthCredentials</code></br>
  7312. <em>
  7313. <a href="#external-secrets.io/v1.KubernetesAuthCredentials">
  7314. KubernetesAuthCredentials
  7315. </a>
  7316. </em>
  7317. </td>
  7318. <td>
  7319. <em>(Optional)</em>
  7320. </td>
  7321. </tr>
  7322. <tr>
  7323. <td>
  7324. <code>awsAuthCredentials</code></br>
  7325. <em>
  7326. <a href="#external-secrets.io/v1.AwsAuthCredentials">
  7327. AwsAuthCredentials
  7328. </a>
  7329. </em>
  7330. </td>
  7331. <td>
  7332. <em>(Optional)</em>
  7333. </td>
  7334. </tr>
  7335. <tr>
  7336. <td>
  7337. <code>tokenAuthCredentials</code></br>
  7338. <em>
  7339. <a href="#external-secrets.io/v1.TokenAuthCredentials">
  7340. TokenAuthCredentials
  7341. </a>
  7342. </em>
  7343. </td>
  7344. <td>
  7345. <em>(Optional)</em>
  7346. </td>
  7347. </tr>
  7348. </tbody>
  7349. </table>
  7350. <h3 id="external-secrets.io/v1.InfisicalProvider">InfisicalProvider
  7351. </h3>
  7352. <p>
  7353. (<em>Appears on:</em>
  7354. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7355. </p>
  7356. <p>
  7357. <p>InfisicalProvider configures a store to sync secrets using the Infisical provider.</p>
  7358. </p>
  7359. <table>
  7360. <thead>
  7361. <tr>
  7362. <th>Field</th>
  7363. <th>Description</th>
  7364. </tr>
  7365. </thead>
  7366. <tbody>
  7367. <tr>
  7368. <td>
  7369. <code>auth</code></br>
  7370. <em>
  7371. <a href="#external-secrets.io/v1.InfisicalAuth">
  7372. InfisicalAuth
  7373. </a>
  7374. </em>
  7375. </td>
  7376. <td>
  7377. <p>Auth configures how the Operator authenticates with the Infisical API</p>
  7378. </td>
  7379. </tr>
  7380. <tr>
  7381. <td>
  7382. <code>secretsScope</code></br>
  7383. <em>
  7384. <a href="#external-secrets.io/v1.MachineIdentityScopeInWorkspace">
  7385. MachineIdentityScopeInWorkspace
  7386. </a>
  7387. </em>
  7388. </td>
  7389. <td>
  7390. <p>SecretsScope defines the scope of the secrets within the workspace</p>
  7391. </td>
  7392. </tr>
  7393. <tr>
  7394. <td>
  7395. <code>hostAPI</code></br>
  7396. <em>
  7397. string
  7398. </em>
  7399. </td>
  7400. <td>
  7401. <em>(Optional)</em>
  7402. <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>
  7403. </td>
  7404. </tr>
  7405. </tbody>
  7406. </table>
  7407. <h3 id="external-secrets.io/v1.IntegrationInfo">IntegrationInfo
  7408. </h3>
  7409. <p>
  7410. (<em>Appears on:</em>
  7411. <a href="#external-secrets.io/v1.OnePasswordSDKProvider">OnePasswordSDKProvider</a>)
  7412. </p>
  7413. <p>
  7414. <p>IntegrationInfo specifies the name and version of the integration built using the 1Password Go SDK.</p>
  7415. </p>
  7416. <table>
  7417. <thead>
  7418. <tr>
  7419. <th>Field</th>
  7420. <th>Description</th>
  7421. </tr>
  7422. </thead>
  7423. <tbody>
  7424. <tr>
  7425. <td>
  7426. <code>name</code></br>
  7427. <em>
  7428. string
  7429. </em>
  7430. </td>
  7431. <td>
  7432. <p>Name defaults to &ldquo;1Password SDK&rdquo;.</p>
  7433. </td>
  7434. </tr>
  7435. <tr>
  7436. <td>
  7437. <code>version</code></br>
  7438. <em>
  7439. string
  7440. </em>
  7441. </td>
  7442. <td>
  7443. <p>Version defaults to &ldquo;v1.0.0&rdquo;.</p>
  7444. </td>
  7445. </tr>
  7446. </tbody>
  7447. </table>
  7448. <h3 id="external-secrets.io/v1.JwtAuthCredentials">JwtAuthCredentials
  7449. </h3>
  7450. <p>
  7451. (<em>Appears on:</em>
  7452. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  7453. </p>
  7454. <p>
  7455. </p>
  7456. <table>
  7457. <thead>
  7458. <tr>
  7459. <th>Field</th>
  7460. <th>Description</th>
  7461. </tr>
  7462. </thead>
  7463. <tbody>
  7464. <tr>
  7465. <td>
  7466. <code>identityId</code></br>
  7467. <em>
  7468. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7469. External Secrets meta/v1.SecretKeySelector
  7470. </a>
  7471. </em>
  7472. </td>
  7473. <td>
  7474. </td>
  7475. </tr>
  7476. <tr>
  7477. <td>
  7478. <code>jwt</code></br>
  7479. <em>
  7480. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7481. External Secrets meta/v1.SecretKeySelector
  7482. </a>
  7483. </em>
  7484. </td>
  7485. <td>
  7486. </td>
  7487. </tr>
  7488. </tbody>
  7489. </table>
  7490. <h3 id="external-secrets.io/v1.KeeperSecurityProvider">KeeperSecurityProvider
  7491. </h3>
  7492. <p>
  7493. (<em>Appears on:</em>
  7494. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7495. </p>
  7496. <p>
  7497. <p>KeeperSecurityProvider Configures a store to sync secrets using Keeper Security.</p>
  7498. </p>
  7499. <table>
  7500. <thead>
  7501. <tr>
  7502. <th>Field</th>
  7503. <th>Description</th>
  7504. </tr>
  7505. </thead>
  7506. <tbody>
  7507. <tr>
  7508. <td>
  7509. <code>authRef</code></br>
  7510. <em>
  7511. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7512. External Secrets meta/v1.SecretKeySelector
  7513. </a>
  7514. </em>
  7515. </td>
  7516. <td>
  7517. </td>
  7518. </tr>
  7519. <tr>
  7520. <td>
  7521. <code>folderID</code></br>
  7522. <em>
  7523. string
  7524. </em>
  7525. </td>
  7526. <td>
  7527. </td>
  7528. </tr>
  7529. </tbody>
  7530. </table>
  7531. <h3 id="external-secrets.io/v1.KubernetesAuth">KubernetesAuth
  7532. </h3>
  7533. <p>
  7534. (<em>Appears on:</em>
  7535. <a href="#external-secrets.io/v1.KubernetesProvider">KubernetesProvider</a>)
  7536. </p>
  7537. <p>
  7538. </p>
  7539. <table>
  7540. <thead>
  7541. <tr>
  7542. <th>Field</th>
  7543. <th>Description</th>
  7544. </tr>
  7545. </thead>
  7546. <tbody>
  7547. <tr>
  7548. <td>
  7549. <code>cert</code></br>
  7550. <em>
  7551. <a href="#external-secrets.io/v1.CertAuth">
  7552. CertAuth
  7553. </a>
  7554. </em>
  7555. </td>
  7556. <td>
  7557. <em>(Optional)</em>
  7558. <p>has both clientCert and clientKey as secretKeySelector</p>
  7559. </td>
  7560. </tr>
  7561. <tr>
  7562. <td>
  7563. <code>token</code></br>
  7564. <em>
  7565. <a href="#external-secrets.io/v1.TokenAuth">
  7566. TokenAuth
  7567. </a>
  7568. </em>
  7569. </td>
  7570. <td>
  7571. <em>(Optional)</em>
  7572. <p>use static token to authenticate with</p>
  7573. </td>
  7574. </tr>
  7575. <tr>
  7576. <td>
  7577. <code>serviceAccount</code></br>
  7578. <em>
  7579. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  7580. External Secrets meta/v1.ServiceAccountSelector
  7581. </a>
  7582. </em>
  7583. </td>
  7584. <td>
  7585. <em>(Optional)</em>
  7586. <p>points to a service account that should be used for authentication</p>
  7587. </td>
  7588. </tr>
  7589. </tbody>
  7590. </table>
  7591. <h3 id="external-secrets.io/v1.KubernetesAuthCredentials">KubernetesAuthCredentials
  7592. </h3>
  7593. <p>
  7594. (<em>Appears on:</em>
  7595. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  7596. </p>
  7597. <p>
  7598. </p>
  7599. <table>
  7600. <thead>
  7601. <tr>
  7602. <th>Field</th>
  7603. <th>Description</th>
  7604. </tr>
  7605. </thead>
  7606. <tbody>
  7607. <tr>
  7608. <td>
  7609. <code>identityId</code></br>
  7610. <em>
  7611. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7612. External Secrets meta/v1.SecretKeySelector
  7613. </a>
  7614. </em>
  7615. </td>
  7616. <td>
  7617. </td>
  7618. </tr>
  7619. <tr>
  7620. <td>
  7621. <code>serviceAccountTokenPath</code></br>
  7622. <em>
  7623. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7624. External Secrets meta/v1.SecretKeySelector
  7625. </a>
  7626. </em>
  7627. </td>
  7628. <td>
  7629. <em>(Optional)</em>
  7630. </td>
  7631. </tr>
  7632. </tbody>
  7633. </table>
  7634. <h3 id="external-secrets.io/v1.KubernetesProvider">KubernetesProvider
  7635. </h3>
  7636. <p>
  7637. (<em>Appears on:</em>
  7638. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7639. </p>
  7640. <p>
  7641. <p>Configures a store to sync secrets with a Kubernetes instance.</p>
  7642. </p>
  7643. <table>
  7644. <thead>
  7645. <tr>
  7646. <th>Field</th>
  7647. <th>Description</th>
  7648. </tr>
  7649. </thead>
  7650. <tbody>
  7651. <tr>
  7652. <td>
  7653. <code>server</code></br>
  7654. <em>
  7655. <a href="#external-secrets.io/v1.KubernetesServer">
  7656. KubernetesServer
  7657. </a>
  7658. </em>
  7659. </td>
  7660. <td>
  7661. <em>(Optional)</em>
  7662. <p>configures the Kubernetes server Address.</p>
  7663. </td>
  7664. </tr>
  7665. <tr>
  7666. <td>
  7667. <code>auth</code></br>
  7668. <em>
  7669. <a href="#external-secrets.io/v1.KubernetesAuth">
  7670. KubernetesAuth
  7671. </a>
  7672. </em>
  7673. </td>
  7674. <td>
  7675. <em>(Optional)</em>
  7676. <p>Auth configures how secret-manager authenticates with a Kubernetes instance.</p>
  7677. </td>
  7678. </tr>
  7679. <tr>
  7680. <td>
  7681. <code>authRef</code></br>
  7682. <em>
  7683. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7684. External Secrets meta/v1.SecretKeySelector
  7685. </a>
  7686. </em>
  7687. </td>
  7688. <td>
  7689. <em>(Optional)</em>
  7690. <p>A reference to a secret that contains the auth information.</p>
  7691. </td>
  7692. </tr>
  7693. <tr>
  7694. <td>
  7695. <code>remoteNamespace</code></br>
  7696. <em>
  7697. string
  7698. </em>
  7699. </td>
  7700. <td>
  7701. <em>(Optional)</em>
  7702. <p>Remote namespace to fetch the secrets from</p>
  7703. </td>
  7704. </tr>
  7705. </tbody>
  7706. </table>
  7707. <h3 id="external-secrets.io/v1.KubernetesServer">KubernetesServer
  7708. </h3>
  7709. <p>
  7710. (<em>Appears on:</em>
  7711. <a href="#external-secrets.io/v1.KubernetesProvider">KubernetesProvider</a>)
  7712. </p>
  7713. <p>
  7714. </p>
  7715. <table>
  7716. <thead>
  7717. <tr>
  7718. <th>Field</th>
  7719. <th>Description</th>
  7720. </tr>
  7721. </thead>
  7722. <tbody>
  7723. <tr>
  7724. <td>
  7725. <code>url</code></br>
  7726. <em>
  7727. string
  7728. </em>
  7729. </td>
  7730. <td>
  7731. <em>(Optional)</em>
  7732. <p>configures the Kubernetes server Address.</p>
  7733. </td>
  7734. </tr>
  7735. <tr>
  7736. <td>
  7737. <code>caBundle</code></br>
  7738. <em>
  7739. []byte
  7740. </em>
  7741. </td>
  7742. <td>
  7743. <em>(Optional)</em>
  7744. <p>CABundle is a base64-encoded CA certificate</p>
  7745. </td>
  7746. </tr>
  7747. <tr>
  7748. <td>
  7749. <code>caProvider</code></br>
  7750. <em>
  7751. <a href="#external-secrets.io/v1.CAProvider">
  7752. CAProvider
  7753. </a>
  7754. </em>
  7755. </td>
  7756. <td>
  7757. <em>(Optional)</em>
  7758. <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>
  7759. </td>
  7760. </tr>
  7761. </tbody>
  7762. </table>
  7763. <h3 id="external-secrets.io/v1.LdapAuthCredentials">LdapAuthCredentials
  7764. </h3>
  7765. <p>
  7766. (<em>Appears on:</em>
  7767. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  7768. </p>
  7769. <p>
  7770. </p>
  7771. <table>
  7772. <thead>
  7773. <tr>
  7774. <th>Field</th>
  7775. <th>Description</th>
  7776. </tr>
  7777. </thead>
  7778. <tbody>
  7779. <tr>
  7780. <td>
  7781. <code>identityId</code></br>
  7782. <em>
  7783. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7784. External Secrets meta/v1.SecretKeySelector
  7785. </a>
  7786. </em>
  7787. </td>
  7788. <td>
  7789. </td>
  7790. </tr>
  7791. <tr>
  7792. <td>
  7793. <code>ldapPassword</code></br>
  7794. <em>
  7795. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7796. External Secrets meta/v1.SecretKeySelector
  7797. </a>
  7798. </em>
  7799. </td>
  7800. <td>
  7801. </td>
  7802. </tr>
  7803. <tr>
  7804. <td>
  7805. <code>ldapUsername</code></br>
  7806. <em>
  7807. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7808. External Secrets meta/v1.SecretKeySelector
  7809. </a>
  7810. </em>
  7811. </td>
  7812. <td>
  7813. </td>
  7814. </tr>
  7815. </tbody>
  7816. </table>
  7817. <h3 id="external-secrets.io/v1.MachineIdentityScopeInWorkspace">MachineIdentityScopeInWorkspace
  7818. </h3>
  7819. <p>
  7820. (<em>Appears on:</em>
  7821. <a href="#external-secrets.io/v1.InfisicalProvider">InfisicalProvider</a>)
  7822. </p>
  7823. <p>
  7824. </p>
  7825. <table>
  7826. <thead>
  7827. <tr>
  7828. <th>Field</th>
  7829. <th>Description</th>
  7830. </tr>
  7831. </thead>
  7832. <tbody>
  7833. <tr>
  7834. <td>
  7835. <code>secretsPath</code></br>
  7836. <em>
  7837. string
  7838. </em>
  7839. </td>
  7840. <td>
  7841. <em>(Optional)</em>
  7842. <p>SecretsPath specifies the path to the secrets within the workspace. Defaults to &ldquo;/&rdquo; if not provided.</p>
  7843. </td>
  7844. </tr>
  7845. <tr>
  7846. <td>
  7847. <code>recursive</code></br>
  7848. <em>
  7849. bool
  7850. </em>
  7851. </td>
  7852. <td>
  7853. <em>(Optional)</em>
  7854. <p>Recursive indicates whether the secrets should be fetched recursively. Defaults to false if not provided.</p>
  7855. </td>
  7856. </tr>
  7857. <tr>
  7858. <td>
  7859. <code>environmentSlug</code></br>
  7860. <em>
  7861. string
  7862. </em>
  7863. </td>
  7864. <td>
  7865. <p>EnvironmentSlug is the required slug identifier for the environment.</p>
  7866. </td>
  7867. </tr>
  7868. <tr>
  7869. <td>
  7870. <code>projectSlug</code></br>
  7871. <em>
  7872. string
  7873. </em>
  7874. </td>
  7875. <td>
  7876. <p>ProjectSlug is the required slug identifier for the project.</p>
  7877. </td>
  7878. </tr>
  7879. <tr>
  7880. <td>
  7881. <code>expandSecretReferences</code></br>
  7882. <em>
  7883. bool
  7884. </em>
  7885. </td>
  7886. <td>
  7887. <em>(Optional)</em>
  7888. <p>ExpandSecretReferences indicates whether secret references should be expanded. Defaults to true if not provided.</p>
  7889. </td>
  7890. </tr>
  7891. </tbody>
  7892. </table>
  7893. <h3 id="external-secrets.io/v1.MaintenanceStatus">MaintenanceStatus
  7894. (<code>bool</code> alias)</p></h3>
  7895. <p>
  7896. </p>
  7897. <table>
  7898. <thead>
  7899. <tr>
  7900. <th>Value</th>
  7901. <th>Description</th>
  7902. </tr>
  7903. </thead>
  7904. <tbody><tr><td><p>true</p></td>
  7905. <td></td>
  7906. </tr><tr><td><p>false</p></td>
  7907. <td></td>
  7908. </tr></tbody>
  7909. </table>
  7910. <h3 id="external-secrets.io/v1.NTLMProtocol">NTLMProtocol
  7911. </h3>
  7912. <p>
  7913. (<em>Appears on:</em>
  7914. <a href="#external-secrets.io/v1.AuthorizationProtocol">AuthorizationProtocol</a>)
  7915. </p>
  7916. <p>
  7917. <p>NTLMProtocol contains the NTLM-specific configuration.</p>
  7918. </p>
  7919. <table>
  7920. <thead>
  7921. <tr>
  7922. <th>Field</th>
  7923. <th>Description</th>
  7924. </tr>
  7925. </thead>
  7926. <tbody>
  7927. <tr>
  7928. <td>
  7929. <code>usernameSecret</code></br>
  7930. <em>
  7931. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7932. External Secrets meta/v1.SecretKeySelector
  7933. </a>
  7934. </em>
  7935. </td>
  7936. <td>
  7937. </td>
  7938. </tr>
  7939. <tr>
  7940. <td>
  7941. <code>passwordSecret</code></br>
  7942. <em>
  7943. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7944. External Secrets meta/v1.SecretKeySelector
  7945. </a>
  7946. </em>
  7947. </td>
  7948. <td>
  7949. </td>
  7950. </tr>
  7951. </tbody>
  7952. </table>
  7953. <h3 id="external-secrets.io/v1.NoSecretError">NoSecretError
  7954. </h3>
  7955. <p>
  7956. <p>NoSecretError shall be returned when a GetSecret can not find the
  7957. desired secret. This is used for deletionPolicy.</p>
  7958. </p>
  7959. <h3 id="external-secrets.io/v1.NotModifiedError">NotModifiedError
  7960. </h3>
  7961. <p>
  7962. <p>NotModifiedError to signal that the webhook received no changes,
  7963. and it should just return without doing anything.</p>
  7964. </p>
  7965. <h3 id="external-secrets.io/v1.OciAuthCredentials">OciAuthCredentials
  7966. </h3>
  7967. <p>
  7968. (<em>Appears on:</em>
  7969. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  7970. </p>
  7971. <p>
  7972. </p>
  7973. <table>
  7974. <thead>
  7975. <tr>
  7976. <th>Field</th>
  7977. <th>Description</th>
  7978. </tr>
  7979. </thead>
  7980. <tbody>
  7981. <tr>
  7982. <td>
  7983. <code>identityId</code></br>
  7984. <em>
  7985. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7986. External Secrets meta/v1.SecretKeySelector
  7987. </a>
  7988. </em>
  7989. </td>
  7990. <td>
  7991. </td>
  7992. </tr>
  7993. <tr>
  7994. <td>
  7995. <code>privateKey</code></br>
  7996. <em>
  7997. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7998. External Secrets meta/v1.SecretKeySelector
  7999. </a>
  8000. </em>
  8001. </td>
  8002. <td>
  8003. </td>
  8004. </tr>
  8005. <tr>
  8006. <td>
  8007. <code>privateKeyPassphrase</code></br>
  8008. <em>
  8009. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8010. External Secrets meta/v1.SecretKeySelector
  8011. </a>
  8012. </em>
  8013. </td>
  8014. <td>
  8015. <em>(Optional)</em>
  8016. </td>
  8017. </tr>
  8018. <tr>
  8019. <td>
  8020. <code>fingerprint</code></br>
  8021. <em>
  8022. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8023. External Secrets meta/v1.SecretKeySelector
  8024. </a>
  8025. </em>
  8026. </td>
  8027. <td>
  8028. </td>
  8029. </tr>
  8030. <tr>
  8031. <td>
  8032. <code>userId</code></br>
  8033. <em>
  8034. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8035. External Secrets meta/v1.SecretKeySelector
  8036. </a>
  8037. </em>
  8038. </td>
  8039. <td>
  8040. </td>
  8041. </tr>
  8042. <tr>
  8043. <td>
  8044. <code>tenancyId</code></br>
  8045. <em>
  8046. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8047. External Secrets meta/v1.SecretKeySelector
  8048. </a>
  8049. </em>
  8050. </td>
  8051. <td>
  8052. </td>
  8053. </tr>
  8054. <tr>
  8055. <td>
  8056. <code>region</code></br>
  8057. <em>
  8058. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8059. External Secrets meta/v1.SecretKeySelector
  8060. </a>
  8061. </em>
  8062. </td>
  8063. <td>
  8064. </td>
  8065. </tr>
  8066. </tbody>
  8067. </table>
  8068. <h3 id="external-secrets.io/v1.OnboardbaseAuthSecretRef">OnboardbaseAuthSecretRef
  8069. </h3>
  8070. <p>
  8071. (<em>Appears on:</em>
  8072. <a href="#external-secrets.io/v1.OnboardbaseProvider">OnboardbaseProvider</a>)
  8073. </p>
  8074. <p>
  8075. <p>OnboardbaseAuthSecretRef holds secret references for onboardbase API Key credentials.</p>
  8076. </p>
  8077. <table>
  8078. <thead>
  8079. <tr>
  8080. <th>Field</th>
  8081. <th>Description</th>
  8082. </tr>
  8083. </thead>
  8084. <tbody>
  8085. <tr>
  8086. <td>
  8087. <code>apiKeyRef</code></br>
  8088. <em>
  8089. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8090. External Secrets meta/v1.SecretKeySelector
  8091. </a>
  8092. </em>
  8093. </td>
  8094. <td>
  8095. <p>OnboardbaseAPIKey is the APIKey generated by an admin account.
  8096. It is used to recognize and authorize access to a project and environment within onboardbase</p>
  8097. </td>
  8098. </tr>
  8099. <tr>
  8100. <td>
  8101. <code>passcodeRef</code></br>
  8102. <em>
  8103. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8104. External Secrets meta/v1.SecretKeySelector
  8105. </a>
  8106. </em>
  8107. </td>
  8108. <td>
  8109. <p>OnboardbasePasscode is the passcode attached to the API Key</p>
  8110. </td>
  8111. </tr>
  8112. </tbody>
  8113. </table>
  8114. <h3 id="external-secrets.io/v1.OnboardbaseProvider">OnboardbaseProvider
  8115. </h3>
  8116. <p>
  8117. (<em>Appears on:</em>
  8118. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8119. </p>
  8120. <p>
  8121. <p>OnboardbaseProvider configures a store to sync secrets using the Onboardbase provider.
  8122. Project and Config are required if not using a Service Token.</p>
  8123. </p>
  8124. <table>
  8125. <thead>
  8126. <tr>
  8127. <th>Field</th>
  8128. <th>Description</th>
  8129. </tr>
  8130. </thead>
  8131. <tbody>
  8132. <tr>
  8133. <td>
  8134. <code>auth</code></br>
  8135. <em>
  8136. <a href="#external-secrets.io/v1.OnboardbaseAuthSecretRef">
  8137. OnboardbaseAuthSecretRef
  8138. </a>
  8139. </em>
  8140. </td>
  8141. <td>
  8142. <p>Auth configures how the Operator authenticates with the Onboardbase API</p>
  8143. </td>
  8144. </tr>
  8145. <tr>
  8146. <td>
  8147. <code>apiHost</code></br>
  8148. <em>
  8149. string
  8150. </em>
  8151. </td>
  8152. <td>
  8153. <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>
  8154. </td>
  8155. </tr>
  8156. <tr>
  8157. <td>
  8158. <code>project</code></br>
  8159. <em>
  8160. string
  8161. </em>
  8162. </td>
  8163. <td>
  8164. <p>Project is an onboardbase project that the secrets should be pulled from</p>
  8165. </td>
  8166. </tr>
  8167. <tr>
  8168. <td>
  8169. <code>environment</code></br>
  8170. <em>
  8171. string
  8172. </em>
  8173. </td>
  8174. <td>
  8175. <p>Environment is the name of an environmnent within a project to pull the secrets from</p>
  8176. </td>
  8177. </tr>
  8178. </tbody>
  8179. </table>
  8180. <h3 id="external-secrets.io/v1.OnePasswordAuth">OnePasswordAuth
  8181. </h3>
  8182. <p>
  8183. (<em>Appears on:</em>
  8184. <a href="#external-secrets.io/v1.OnePasswordProvider">OnePasswordProvider</a>)
  8185. </p>
  8186. <p>
  8187. <p>OnePasswordAuth contains a secretRef for credentials.</p>
  8188. </p>
  8189. <table>
  8190. <thead>
  8191. <tr>
  8192. <th>Field</th>
  8193. <th>Description</th>
  8194. </tr>
  8195. </thead>
  8196. <tbody>
  8197. <tr>
  8198. <td>
  8199. <code>secretRef</code></br>
  8200. <em>
  8201. <a href="#external-secrets.io/v1.OnePasswordAuthSecretRef">
  8202. OnePasswordAuthSecretRef
  8203. </a>
  8204. </em>
  8205. </td>
  8206. <td>
  8207. </td>
  8208. </tr>
  8209. </tbody>
  8210. </table>
  8211. <h3 id="external-secrets.io/v1.OnePasswordAuthSecretRef">OnePasswordAuthSecretRef
  8212. </h3>
  8213. <p>
  8214. (<em>Appears on:</em>
  8215. <a href="#external-secrets.io/v1.OnePasswordAuth">OnePasswordAuth</a>)
  8216. </p>
  8217. <p>
  8218. <p>OnePasswordAuthSecretRef holds secret references for 1Password credentials.</p>
  8219. </p>
  8220. <table>
  8221. <thead>
  8222. <tr>
  8223. <th>Field</th>
  8224. <th>Description</th>
  8225. </tr>
  8226. </thead>
  8227. <tbody>
  8228. <tr>
  8229. <td>
  8230. <code>connectTokenSecretRef</code></br>
  8231. <em>
  8232. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8233. External Secrets meta/v1.SecretKeySelector
  8234. </a>
  8235. </em>
  8236. </td>
  8237. <td>
  8238. <p>The ConnectToken is used for authentication to a 1Password Connect Server.</p>
  8239. </td>
  8240. </tr>
  8241. </tbody>
  8242. </table>
  8243. <h3 id="external-secrets.io/v1.OnePasswordProvider">OnePasswordProvider
  8244. </h3>
  8245. <p>
  8246. (<em>Appears on:</em>
  8247. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8248. </p>
  8249. <p>
  8250. <p>OnePasswordProvider configures a store to sync secrets using the 1Password Secret Manager provider.</p>
  8251. </p>
  8252. <table>
  8253. <thead>
  8254. <tr>
  8255. <th>Field</th>
  8256. <th>Description</th>
  8257. </tr>
  8258. </thead>
  8259. <tbody>
  8260. <tr>
  8261. <td>
  8262. <code>auth</code></br>
  8263. <em>
  8264. <a href="#external-secrets.io/v1.OnePasswordAuth">
  8265. OnePasswordAuth
  8266. </a>
  8267. </em>
  8268. </td>
  8269. <td>
  8270. <p>Auth defines the information necessary to authenticate against OnePassword Connect Server</p>
  8271. </td>
  8272. </tr>
  8273. <tr>
  8274. <td>
  8275. <code>connectHost</code></br>
  8276. <em>
  8277. string
  8278. </em>
  8279. </td>
  8280. <td>
  8281. <p>ConnectHost defines the OnePassword Connect Server to connect to</p>
  8282. </td>
  8283. </tr>
  8284. <tr>
  8285. <td>
  8286. <code>vaults</code></br>
  8287. <em>
  8288. map[string]int
  8289. </em>
  8290. </td>
  8291. <td>
  8292. <p>Vaults defines which OnePassword vaults to search in which order</p>
  8293. </td>
  8294. </tr>
  8295. </tbody>
  8296. </table>
  8297. <h3 id="external-secrets.io/v1.OnePasswordSDKAuth">OnePasswordSDKAuth
  8298. </h3>
  8299. <p>
  8300. (<em>Appears on:</em>
  8301. <a href="#external-secrets.io/v1.OnePasswordSDKProvider">OnePasswordSDKProvider</a>)
  8302. </p>
  8303. <p>
  8304. <p>OnePasswordSDKAuth contains a secretRef for the service account token.</p>
  8305. </p>
  8306. <table>
  8307. <thead>
  8308. <tr>
  8309. <th>Field</th>
  8310. <th>Description</th>
  8311. </tr>
  8312. </thead>
  8313. <tbody>
  8314. <tr>
  8315. <td>
  8316. <code>serviceAccountSecretRef</code></br>
  8317. <em>
  8318. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8319. External Secrets meta/v1.SecretKeySelector
  8320. </a>
  8321. </em>
  8322. </td>
  8323. <td>
  8324. <p>ServiceAccountSecretRef points to the secret containing the token to access 1Password vault.</p>
  8325. </td>
  8326. </tr>
  8327. </tbody>
  8328. </table>
  8329. <h3 id="external-secrets.io/v1.OnePasswordSDKProvider">OnePasswordSDKProvider
  8330. </h3>
  8331. <p>
  8332. (<em>Appears on:</em>
  8333. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8334. </p>
  8335. <p>
  8336. <p>OnePasswordSDKProvider configures a store to sync secrets using the 1Password sdk.</p>
  8337. </p>
  8338. <table>
  8339. <thead>
  8340. <tr>
  8341. <th>Field</th>
  8342. <th>Description</th>
  8343. </tr>
  8344. </thead>
  8345. <tbody>
  8346. <tr>
  8347. <td>
  8348. <code>vault</code></br>
  8349. <em>
  8350. string
  8351. </em>
  8352. </td>
  8353. <td>
  8354. <p>Vault defines the vault&rsquo;s name or uuid to access. Do NOT add op:// prefix. This will be done automatically.</p>
  8355. </td>
  8356. </tr>
  8357. <tr>
  8358. <td>
  8359. <code>integrationInfo</code></br>
  8360. <em>
  8361. <a href="#external-secrets.io/v1.IntegrationInfo">
  8362. IntegrationInfo
  8363. </a>
  8364. </em>
  8365. </td>
  8366. <td>
  8367. <em>(Optional)</em>
  8368. <p>IntegrationInfo specifies the name and version of the integration built using the 1Password Go SDK.
  8369. If you don&rsquo;t know which name and version to use, use <code>DefaultIntegrationName</code> and <code>DefaultIntegrationVersion</code>, respectively.</p>
  8370. </td>
  8371. </tr>
  8372. <tr>
  8373. <td>
  8374. <code>auth</code></br>
  8375. <em>
  8376. <a href="#external-secrets.io/v1.OnePasswordSDKAuth">
  8377. OnePasswordSDKAuth
  8378. </a>
  8379. </em>
  8380. </td>
  8381. <td>
  8382. <p>Auth defines the information necessary to authenticate against OnePassword API.</p>
  8383. </td>
  8384. </tr>
  8385. </tbody>
  8386. </table>
  8387. <h3 id="external-secrets.io/v1.OracleAuth">OracleAuth
  8388. </h3>
  8389. <p>
  8390. (<em>Appears on:</em>
  8391. <a href="#external-secrets.io/v1.OracleProvider">OracleProvider</a>)
  8392. </p>
  8393. <p>
  8394. </p>
  8395. <table>
  8396. <thead>
  8397. <tr>
  8398. <th>Field</th>
  8399. <th>Description</th>
  8400. </tr>
  8401. </thead>
  8402. <tbody>
  8403. <tr>
  8404. <td>
  8405. <code>tenancy</code></br>
  8406. <em>
  8407. string
  8408. </em>
  8409. </td>
  8410. <td>
  8411. <p>Tenancy is the tenancy OCID where user is located.</p>
  8412. </td>
  8413. </tr>
  8414. <tr>
  8415. <td>
  8416. <code>user</code></br>
  8417. <em>
  8418. string
  8419. </em>
  8420. </td>
  8421. <td>
  8422. <p>User is an access OCID specific to the account.</p>
  8423. </td>
  8424. </tr>
  8425. <tr>
  8426. <td>
  8427. <code>secretRef</code></br>
  8428. <em>
  8429. <a href="#external-secrets.io/v1.OracleSecretRef">
  8430. OracleSecretRef
  8431. </a>
  8432. </em>
  8433. </td>
  8434. <td>
  8435. <p>SecretRef to pass through sensitive information.</p>
  8436. </td>
  8437. </tr>
  8438. </tbody>
  8439. </table>
  8440. <h3 id="external-secrets.io/v1.OraclePrincipalType">OraclePrincipalType
  8441. (<code>string</code> alias)</p></h3>
  8442. <p>
  8443. (<em>Appears on:</em>
  8444. <a href="#external-secrets.io/v1.OracleProvider">OracleProvider</a>)
  8445. </p>
  8446. <p>
  8447. </p>
  8448. <table>
  8449. <thead>
  8450. <tr>
  8451. <th>Value</th>
  8452. <th>Description</th>
  8453. </tr>
  8454. </thead>
  8455. <tbody><tr><td><p>&#34;InstancePrincipal&#34;</p></td>
  8456. <td><p>InstancePrincipal represents a instance principal.</p>
  8457. </td>
  8458. </tr><tr><td><p>&#34;UserPrincipal&#34;</p></td>
  8459. <td><p>UserPrincipal represents a user principal.</p>
  8460. </td>
  8461. </tr><tr><td><p>&#34;Workload&#34;</p></td>
  8462. <td><p>WorkloadPrincipal represents a workload principal.</p>
  8463. </td>
  8464. </tr></tbody>
  8465. </table>
  8466. <h3 id="external-secrets.io/v1.OracleProvider">OracleProvider
  8467. </h3>
  8468. <p>
  8469. (<em>Appears on:</em>
  8470. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8471. </p>
  8472. <p>
  8473. <p>Configures an store to sync secrets using a Oracle Vault
  8474. backend.</p>
  8475. </p>
  8476. <table>
  8477. <thead>
  8478. <tr>
  8479. <th>Field</th>
  8480. <th>Description</th>
  8481. </tr>
  8482. </thead>
  8483. <tbody>
  8484. <tr>
  8485. <td>
  8486. <code>region</code></br>
  8487. <em>
  8488. string
  8489. </em>
  8490. </td>
  8491. <td>
  8492. <p>Region is the region where vault is located.</p>
  8493. </td>
  8494. </tr>
  8495. <tr>
  8496. <td>
  8497. <code>vault</code></br>
  8498. <em>
  8499. string
  8500. </em>
  8501. </td>
  8502. <td>
  8503. <p>Vault is the vault&rsquo;s OCID of the specific vault where secret is located.</p>
  8504. </td>
  8505. </tr>
  8506. <tr>
  8507. <td>
  8508. <code>compartment</code></br>
  8509. <em>
  8510. string
  8511. </em>
  8512. </td>
  8513. <td>
  8514. <em>(Optional)</em>
  8515. <p>Compartment is the vault compartment OCID.
  8516. Required for PushSecret</p>
  8517. </td>
  8518. </tr>
  8519. <tr>
  8520. <td>
  8521. <code>encryptionKey</code></br>
  8522. <em>
  8523. string
  8524. </em>
  8525. </td>
  8526. <td>
  8527. <em>(Optional)</em>
  8528. <p>EncryptionKey is the OCID of the encryption key within the vault.
  8529. Required for PushSecret</p>
  8530. </td>
  8531. </tr>
  8532. <tr>
  8533. <td>
  8534. <code>principalType</code></br>
  8535. <em>
  8536. <a href="#external-secrets.io/v1.OraclePrincipalType">
  8537. OraclePrincipalType
  8538. </a>
  8539. </em>
  8540. </td>
  8541. <td>
  8542. <em>(Optional)</em>
  8543. <p>The type of principal to use for authentication. If left blank, the Auth struct will
  8544. determine the principal type. This optional field must be specified if using
  8545. workload identity.</p>
  8546. </td>
  8547. </tr>
  8548. <tr>
  8549. <td>
  8550. <code>auth</code></br>
  8551. <em>
  8552. <a href="#external-secrets.io/v1.OracleAuth">
  8553. OracleAuth
  8554. </a>
  8555. </em>
  8556. </td>
  8557. <td>
  8558. <em>(Optional)</em>
  8559. <p>Auth configures how secret-manager authenticates with the Oracle Vault.
  8560. If empty, use the instance principal, otherwise the user credentials specified in Auth.</p>
  8561. </td>
  8562. </tr>
  8563. <tr>
  8564. <td>
  8565. <code>serviceAccountRef</code></br>
  8566. <em>
  8567. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  8568. External Secrets meta/v1.ServiceAccountSelector
  8569. </a>
  8570. </em>
  8571. </td>
  8572. <td>
  8573. <em>(Optional)</em>
  8574. <p>ServiceAccountRef specified the service account
  8575. that should be used when authenticating with WorkloadIdentity.</p>
  8576. </td>
  8577. </tr>
  8578. </tbody>
  8579. </table>
  8580. <h3 id="external-secrets.io/v1.OracleSecretRef">OracleSecretRef
  8581. </h3>
  8582. <p>
  8583. (<em>Appears on:</em>
  8584. <a href="#external-secrets.io/v1.OracleAuth">OracleAuth</a>)
  8585. </p>
  8586. <p>
  8587. </p>
  8588. <table>
  8589. <thead>
  8590. <tr>
  8591. <th>Field</th>
  8592. <th>Description</th>
  8593. </tr>
  8594. </thead>
  8595. <tbody>
  8596. <tr>
  8597. <td>
  8598. <code>privatekey</code></br>
  8599. <em>
  8600. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8601. External Secrets meta/v1.SecretKeySelector
  8602. </a>
  8603. </em>
  8604. </td>
  8605. <td>
  8606. <p>PrivateKey is the user&rsquo;s API Signing Key in PEM format, used for authentication.</p>
  8607. </td>
  8608. </tr>
  8609. <tr>
  8610. <td>
  8611. <code>fingerprint</code></br>
  8612. <em>
  8613. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8614. External Secrets meta/v1.SecretKeySelector
  8615. </a>
  8616. </em>
  8617. </td>
  8618. <td>
  8619. <p>Fingerprint is the fingerprint of the API private key.</p>
  8620. </td>
  8621. </tr>
  8622. </tbody>
  8623. </table>
  8624. <h3 id="external-secrets.io/v1.PassboltAuth">PassboltAuth
  8625. </h3>
  8626. <p>
  8627. (<em>Appears on:</em>
  8628. <a href="#external-secrets.io/v1.PassboltProvider">PassboltProvider</a>)
  8629. </p>
  8630. <p>
  8631. <p>Passbolt contains a secretRef for the passbolt credentials.</p>
  8632. </p>
  8633. <table>
  8634. <thead>
  8635. <tr>
  8636. <th>Field</th>
  8637. <th>Description</th>
  8638. </tr>
  8639. </thead>
  8640. <tbody>
  8641. <tr>
  8642. <td>
  8643. <code>passwordSecretRef</code></br>
  8644. <em>
  8645. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8646. External Secrets meta/v1.SecretKeySelector
  8647. </a>
  8648. </em>
  8649. </td>
  8650. <td>
  8651. </td>
  8652. </tr>
  8653. <tr>
  8654. <td>
  8655. <code>privateKeySecretRef</code></br>
  8656. <em>
  8657. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8658. External Secrets meta/v1.SecretKeySelector
  8659. </a>
  8660. </em>
  8661. </td>
  8662. <td>
  8663. </td>
  8664. </tr>
  8665. </tbody>
  8666. </table>
  8667. <h3 id="external-secrets.io/v1.PassboltProvider">PassboltProvider
  8668. </h3>
  8669. <p>
  8670. (<em>Appears on:</em>
  8671. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8672. </p>
  8673. <p>
  8674. </p>
  8675. <table>
  8676. <thead>
  8677. <tr>
  8678. <th>Field</th>
  8679. <th>Description</th>
  8680. </tr>
  8681. </thead>
  8682. <tbody>
  8683. <tr>
  8684. <td>
  8685. <code>auth</code></br>
  8686. <em>
  8687. <a href="#external-secrets.io/v1.PassboltAuth">
  8688. PassboltAuth
  8689. </a>
  8690. </em>
  8691. </td>
  8692. <td>
  8693. <p>Auth defines the information necessary to authenticate against Passbolt Server</p>
  8694. </td>
  8695. </tr>
  8696. <tr>
  8697. <td>
  8698. <code>host</code></br>
  8699. <em>
  8700. string
  8701. </em>
  8702. </td>
  8703. <td>
  8704. <p>Host defines the Passbolt Server to connect to</p>
  8705. </td>
  8706. </tr>
  8707. </tbody>
  8708. </table>
  8709. <h3 id="external-secrets.io/v1.PasswordDepotAuth">PasswordDepotAuth
  8710. </h3>
  8711. <p>
  8712. (<em>Appears on:</em>
  8713. <a href="#external-secrets.io/v1.PasswordDepotProvider">PasswordDepotProvider</a>)
  8714. </p>
  8715. <p>
  8716. </p>
  8717. <table>
  8718. <thead>
  8719. <tr>
  8720. <th>Field</th>
  8721. <th>Description</th>
  8722. </tr>
  8723. </thead>
  8724. <tbody>
  8725. <tr>
  8726. <td>
  8727. <code>secretRef</code></br>
  8728. <em>
  8729. <a href="#external-secrets.io/v1.PasswordDepotSecretRef">
  8730. PasswordDepotSecretRef
  8731. </a>
  8732. </em>
  8733. </td>
  8734. <td>
  8735. </td>
  8736. </tr>
  8737. </tbody>
  8738. </table>
  8739. <h3 id="external-secrets.io/v1.PasswordDepotProvider">PasswordDepotProvider
  8740. </h3>
  8741. <p>
  8742. (<em>Appears on:</em>
  8743. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8744. </p>
  8745. <p>
  8746. <p>Configures a store to sync secrets with a Password Depot instance.</p>
  8747. </p>
  8748. <table>
  8749. <thead>
  8750. <tr>
  8751. <th>Field</th>
  8752. <th>Description</th>
  8753. </tr>
  8754. </thead>
  8755. <tbody>
  8756. <tr>
  8757. <td>
  8758. <code>host</code></br>
  8759. <em>
  8760. string
  8761. </em>
  8762. </td>
  8763. <td>
  8764. <p>URL configures the Password Depot instance URL.</p>
  8765. </td>
  8766. </tr>
  8767. <tr>
  8768. <td>
  8769. <code>database</code></br>
  8770. <em>
  8771. string
  8772. </em>
  8773. </td>
  8774. <td>
  8775. <p>Database to use as source</p>
  8776. </td>
  8777. </tr>
  8778. <tr>
  8779. <td>
  8780. <code>auth</code></br>
  8781. <em>
  8782. <a href="#external-secrets.io/v1.PasswordDepotAuth">
  8783. PasswordDepotAuth
  8784. </a>
  8785. </em>
  8786. </td>
  8787. <td>
  8788. <p>Auth configures how secret-manager authenticates with a Password Depot instance.</p>
  8789. </td>
  8790. </tr>
  8791. </tbody>
  8792. </table>
  8793. <h3 id="external-secrets.io/v1.PasswordDepotSecretRef">PasswordDepotSecretRef
  8794. </h3>
  8795. <p>
  8796. (<em>Appears on:</em>
  8797. <a href="#external-secrets.io/v1.PasswordDepotAuth">PasswordDepotAuth</a>)
  8798. </p>
  8799. <p>
  8800. </p>
  8801. <table>
  8802. <thead>
  8803. <tr>
  8804. <th>Field</th>
  8805. <th>Description</th>
  8806. </tr>
  8807. </thead>
  8808. <tbody>
  8809. <tr>
  8810. <td>
  8811. <code>credentials</code></br>
  8812. <em>
  8813. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8814. External Secrets meta/v1.SecretKeySelector
  8815. </a>
  8816. </em>
  8817. </td>
  8818. <td>
  8819. <em>(Optional)</em>
  8820. <p>Username / Password is used for authentication.</p>
  8821. </td>
  8822. </tr>
  8823. </tbody>
  8824. </table>
  8825. <h3 id="external-secrets.io/v1.PreviderAuth">PreviderAuth
  8826. </h3>
  8827. <p>
  8828. (<em>Appears on:</em>
  8829. <a href="#external-secrets.io/v1.PreviderProvider">PreviderProvider</a>)
  8830. </p>
  8831. <p>
  8832. <p>PreviderAuth contains a secretRef for credentials.</p>
  8833. </p>
  8834. <table>
  8835. <thead>
  8836. <tr>
  8837. <th>Field</th>
  8838. <th>Description</th>
  8839. </tr>
  8840. </thead>
  8841. <tbody>
  8842. <tr>
  8843. <td>
  8844. <code>secretRef</code></br>
  8845. <em>
  8846. <a href="#external-secrets.io/v1.PreviderAuthSecretRef">
  8847. PreviderAuthSecretRef
  8848. </a>
  8849. </em>
  8850. </td>
  8851. <td>
  8852. <em>(Optional)</em>
  8853. </td>
  8854. </tr>
  8855. </tbody>
  8856. </table>
  8857. <h3 id="external-secrets.io/v1.PreviderAuthSecretRef">PreviderAuthSecretRef
  8858. </h3>
  8859. <p>
  8860. (<em>Appears on:</em>
  8861. <a href="#external-secrets.io/v1.PreviderAuth">PreviderAuth</a>)
  8862. </p>
  8863. <p>
  8864. <p>PreviderAuthSecretRef holds secret references for Previder Vault credentials.</p>
  8865. </p>
  8866. <table>
  8867. <thead>
  8868. <tr>
  8869. <th>Field</th>
  8870. <th>Description</th>
  8871. </tr>
  8872. </thead>
  8873. <tbody>
  8874. <tr>
  8875. <td>
  8876. <code>accessToken</code></br>
  8877. <em>
  8878. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8879. External Secrets meta/v1.SecretKeySelector
  8880. </a>
  8881. </em>
  8882. </td>
  8883. <td>
  8884. <p>The AccessToken is used for authentication</p>
  8885. </td>
  8886. </tr>
  8887. </tbody>
  8888. </table>
  8889. <h3 id="external-secrets.io/v1.PreviderProvider">PreviderProvider
  8890. </h3>
  8891. <p>
  8892. (<em>Appears on:</em>
  8893. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8894. </p>
  8895. <p>
  8896. <p>PreviderProvider configures a store to sync secrets using the Previder Secret Manager provider.</p>
  8897. </p>
  8898. <table>
  8899. <thead>
  8900. <tr>
  8901. <th>Field</th>
  8902. <th>Description</th>
  8903. </tr>
  8904. </thead>
  8905. <tbody>
  8906. <tr>
  8907. <td>
  8908. <code>auth</code></br>
  8909. <em>
  8910. <a href="#external-secrets.io/v1.PreviderAuth">
  8911. PreviderAuth
  8912. </a>
  8913. </em>
  8914. </td>
  8915. <td>
  8916. </td>
  8917. </tr>
  8918. <tr>
  8919. <td>
  8920. <code>baseUri</code></br>
  8921. <em>
  8922. string
  8923. </em>
  8924. </td>
  8925. <td>
  8926. <em>(Optional)</em>
  8927. </td>
  8928. </tr>
  8929. </tbody>
  8930. </table>
  8931. <h3 id="external-secrets.io/v1.Provider">Provider
  8932. </h3>
  8933. <p>
  8934. <p>Provider is a common interface for interacting with secret backends.</p>
  8935. </p>
  8936. <h3 id="external-secrets.io/v1.PulumiProvider">PulumiProvider
  8937. </h3>
  8938. <p>
  8939. (<em>Appears on:</em>
  8940. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8941. </p>
  8942. <p>
  8943. </p>
  8944. <table>
  8945. <thead>
  8946. <tr>
  8947. <th>Field</th>
  8948. <th>Description</th>
  8949. </tr>
  8950. </thead>
  8951. <tbody>
  8952. <tr>
  8953. <td>
  8954. <code>apiUrl</code></br>
  8955. <em>
  8956. string
  8957. </em>
  8958. </td>
  8959. <td>
  8960. <p>APIURL is the URL of the Pulumi API.</p>
  8961. </td>
  8962. </tr>
  8963. <tr>
  8964. <td>
  8965. <code>accessToken</code></br>
  8966. <em>
  8967. <a href="#external-secrets.io/v1.PulumiProviderSecretRef">
  8968. PulumiProviderSecretRef
  8969. </a>
  8970. </em>
  8971. </td>
  8972. <td>
  8973. <p>AccessToken is the access tokens to sign in to the Pulumi Cloud Console.</p>
  8974. </td>
  8975. </tr>
  8976. <tr>
  8977. <td>
  8978. <code>organization</code></br>
  8979. <em>
  8980. string
  8981. </em>
  8982. </td>
  8983. <td>
  8984. <p>Organization are a space to collaborate on shared projects and stacks.
  8985. To create a new organization, visit <a href="https://app.pulumi.com/">https://app.pulumi.com/</a> and click &ldquo;New Organization&rdquo;.</p>
  8986. </td>
  8987. </tr>
  8988. <tr>
  8989. <td>
  8990. <code>project</code></br>
  8991. <em>
  8992. string
  8993. </em>
  8994. </td>
  8995. <td>
  8996. <p>Project is the name of the Pulumi ESC project the environment belongs to.</p>
  8997. </td>
  8998. </tr>
  8999. <tr>
  9000. <td>
  9001. <code>environment</code></br>
  9002. <em>
  9003. string
  9004. </em>
  9005. </td>
  9006. <td>
  9007. <p>Environment are YAML documents composed of static key-value pairs, programmatic expressions,
  9008. dynamically retrieved values from supported providers including all major clouds,
  9009. and other Pulumi ESC environments.
  9010. 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>
  9011. </td>
  9012. </tr>
  9013. </tbody>
  9014. </table>
  9015. <h3 id="external-secrets.io/v1.PulumiProviderSecretRef">PulumiProviderSecretRef
  9016. </h3>
  9017. <p>
  9018. (<em>Appears on:</em>
  9019. <a href="#external-secrets.io/v1.PulumiProvider">PulumiProvider</a>)
  9020. </p>
  9021. <p>
  9022. </p>
  9023. <table>
  9024. <thead>
  9025. <tr>
  9026. <th>Field</th>
  9027. <th>Description</th>
  9028. </tr>
  9029. </thead>
  9030. <tbody>
  9031. <tr>
  9032. <td>
  9033. <code>secretRef</code></br>
  9034. <em>
  9035. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9036. External Secrets meta/v1.SecretKeySelector
  9037. </a>
  9038. </em>
  9039. </td>
  9040. <td>
  9041. <p>SecretRef is a reference to a secret containing the Pulumi API token.</p>
  9042. </td>
  9043. </tr>
  9044. </tbody>
  9045. </table>
  9046. <h3 id="external-secrets.io/v1.PushSecretData">PushSecretData
  9047. </h3>
  9048. <p>
  9049. <p>PushSecretData is an interface to allow using v1alpha1.PushSecretData content in Provider registered in v1.</p>
  9050. </p>
  9051. <h3 id="external-secrets.io/v1.PushSecretRemoteRef">PushSecretRemoteRef
  9052. </h3>
  9053. <p>
  9054. <p>PushSecretRemoteRef is an interface to allow using v1alpha1.PushSecretRemoteRef in Provider registered in v1.</p>
  9055. </p>
  9056. <h3 id="external-secrets.io/v1.ScalewayProvider">ScalewayProvider
  9057. </h3>
  9058. <p>
  9059. (<em>Appears on:</em>
  9060. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  9061. </p>
  9062. <p>
  9063. </p>
  9064. <table>
  9065. <thead>
  9066. <tr>
  9067. <th>Field</th>
  9068. <th>Description</th>
  9069. </tr>
  9070. </thead>
  9071. <tbody>
  9072. <tr>
  9073. <td>
  9074. <code>apiUrl</code></br>
  9075. <em>
  9076. string
  9077. </em>
  9078. </td>
  9079. <td>
  9080. <em>(Optional)</em>
  9081. <p>APIURL is the url of the api to use. Defaults to <a href="https://api.scaleway.com">https://api.scaleway.com</a></p>
  9082. </td>
  9083. </tr>
  9084. <tr>
  9085. <td>
  9086. <code>region</code></br>
  9087. <em>
  9088. string
  9089. </em>
  9090. </td>
  9091. <td>
  9092. <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>
  9093. </td>
  9094. </tr>
  9095. <tr>
  9096. <td>
  9097. <code>projectId</code></br>
  9098. <em>
  9099. string
  9100. </em>
  9101. </td>
  9102. <td>
  9103. <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>
  9104. </td>
  9105. </tr>
  9106. <tr>
  9107. <td>
  9108. <code>accessKey</code></br>
  9109. <em>
  9110. <a href="#external-secrets.io/v1.ScalewayProviderSecretRef">
  9111. ScalewayProviderSecretRef
  9112. </a>
  9113. </em>
  9114. </td>
  9115. <td>
  9116. <p>AccessKey is the non-secret part of the api key.</p>
  9117. </td>
  9118. </tr>
  9119. <tr>
  9120. <td>
  9121. <code>secretKey</code></br>
  9122. <em>
  9123. <a href="#external-secrets.io/v1.ScalewayProviderSecretRef">
  9124. ScalewayProviderSecretRef
  9125. </a>
  9126. </em>
  9127. </td>
  9128. <td>
  9129. <p>SecretKey is the non-secret part of the api key.</p>
  9130. </td>
  9131. </tr>
  9132. </tbody>
  9133. </table>
  9134. <h3 id="external-secrets.io/v1.ScalewayProviderSecretRef">ScalewayProviderSecretRef
  9135. </h3>
  9136. <p>
  9137. (<em>Appears on:</em>
  9138. <a href="#external-secrets.io/v1.ScalewayProvider">ScalewayProvider</a>)
  9139. </p>
  9140. <p>
  9141. </p>
  9142. <table>
  9143. <thead>
  9144. <tr>
  9145. <th>Field</th>
  9146. <th>Description</th>
  9147. </tr>
  9148. </thead>
  9149. <tbody>
  9150. <tr>
  9151. <td>
  9152. <code>value</code></br>
  9153. <em>
  9154. string
  9155. </em>
  9156. </td>
  9157. <td>
  9158. <em>(Optional)</em>
  9159. <p>Value can be specified directly to set a value without using a secret.</p>
  9160. </td>
  9161. </tr>
  9162. <tr>
  9163. <td>
  9164. <code>secretRef</code></br>
  9165. <em>
  9166. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9167. External Secrets meta/v1.SecretKeySelector
  9168. </a>
  9169. </em>
  9170. </td>
  9171. <td>
  9172. <em>(Optional)</em>
  9173. <p>SecretRef references a key in a secret that will be used as value.</p>
  9174. </td>
  9175. </tr>
  9176. </tbody>
  9177. </table>
  9178. <h3 id="external-secrets.io/v1.SecretReference">SecretReference
  9179. </h3>
  9180. <p>
  9181. (<em>Appears on:</em>
  9182. <a href="#external-secrets.io/v1.AwsCredentialsConfig">AwsCredentialsConfig</a>)
  9183. </p>
  9184. <p>
  9185. <p>SecretReference holds the details of a secret.</p>
  9186. </p>
  9187. <table>
  9188. <thead>
  9189. <tr>
  9190. <th>Field</th>
  9191. <th>Description</th>
  9192. </tr>
  9193. </thead>
  9194. <tbody>
  9195. <tr>
  9196. <td>
  9197. <code>name</code></br>
  9198. <em>
  9199. string
  9200. </em>
  9201. </td>
  9202. <td>
  9203. <p>name of the secret.</p>
  9204. </td>
  9205. </tr>
  9206. <tr>
  9207. <td>
  9208. <code>namespace</code></br>
  9209. <em>
  9210. string
  9211. </em>
  9212. </td>
  9213. <td>
  9214. <p>namespace in which the secret exists. If empty, secret will looked up in local namespace.</p>
  9215. </td>
  9216. </tr>
  9217. </tbody>
  9218. </table>
  9219. <h3 id="external-secrets.io/v1.SecretServerProvider">SecretServerProvider
  9220. </h3>
  9221. <p>
  9222. (<em>Appears on:</em>
  9223. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  9224. </p>
  9225. <p>
  9226. <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>
  9227. </p>
  9228. <table>
  9229. <thead>
  9230. <tr>
  9231. <th>Field</th>
  9232. <th>Description</th>
  9233. </tr>
  9234. </thead>
  9235. <tbody>
  9236. <tr>
  9237. <td>
  9238. <code>username</code></br>
  9239. <em>
  9240. <a href="#external-secrets.io/v1.SecretServerProviderRef">
  9241. SecretServerProviderRef
  9242. </a>
  9243. </em>
  9244. </td>
  9245. <td>
  9246. <p>Username is the secret server account username.</p>
  9247. </td>
  9248. </tr>
  9249. <tr>
  9250. <td>
  9251. <code>password</code></br>
  9252. <em>
  9253. <a href="#external-secrets.io/v1.SecretServerProviderRef">
  9254. SecretServerProviderRef
  9255. </a>
  9256. </em>
  9257. </td>
  9258. <td>
  9259. <p>Password is the secret server account password.</p>
  9260. </td>
  9261. </tr>
  9262. <tr>
  9263. <td>
  9264. <code>domain</code></br>
  9265. <em>
  9266. string
  9267. </em>
  9268. </td>
  9269. <td>
  9270. <em>(Optional)</em>
  9271. <p>Domain is the secret server domain.</p>
  9272. </td>
  9273. </tr>
  9274. <tr>
  9275. <td>
  9276. <code>serverURL</code></br>
  9277. <em>
  9278. string
  9279. </em>
  9280. </td>
  9281. <td>
  9282. <p>ServerURL
  9283. URL to your secret server installation</p>
  9284. </td>
  9285. </tr>
  9286. </tbody>
  9287. </table>
  9288. <h3 id="external-secrets.io/v1.SecretServerProviderRef">SecretServerProviderRef
  9289. </h3>
  9290. <p>
  9291. (<em>Appears on:</em>
  9292. <a href="#external-secrets.io/v1.SecretServerProvider">SecretServerProvider</a>)
  9293. </p>
  9294. <p>
  9295. </p>
  9296. <table>
  9297. <thead>
  9298. <tr>
  9299. <th>Field</th>
  9300. <th>Description</th>
  9301. </tr>
  9302. </thead>
  9303. <tbody>
  9304. <tr>
  9305. <td>
  9306. <code>value</code></br>
  9307. <em>
  9308. string
  9309. </em>
  9310. </td>
  9311. <td>
  9312. <em>(Optional)</em>
  9313. <p>Value can be specified directly to set a value without using a secret.</p>
  9314. </td>
  9315. </tr>
  9316. <tr>
  9317. <td>
  9318. <code>secretRef</code></br>
  9319. <em>
  9320. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9321. External Secrets meta/v1.SecretKeySelector
  9322. </a>
  9323. </em>
  9324. </td>
  9325. <td>
  9326. <em>(Optional)</em>
  9327. <p>SecretRef references a key in a secret that will be used as value.</p>
  9328. </td>
  9329. </tr>
  9330. </tbody>
  9331. </table>
  9332. <h3 id="external-secrets.io/v1.SecretStore">SecretStore
  9333. </h3>
  9334. <p>
  9335. <p>SecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  9336. </p>
  9337. <table>
  9338. <thead>
  9339. <tr>
  9340. <th>Field</th>
  9341. <th>Description</th>
  9342. </tr>
  9343. </thead>
  9344. <tbody>
  9345. <tr>
  9346. <td>
  9347. <code>metadata</code></br>
  9348. <em>
  9349. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  9350. Kubernetes meta/v1.ObjectMeta
  9351. </a>
  9352. </em>
  9353. </td>
  9354. <td>
  9355. Refer to the Kubernetes API documentation for the fields of the
  9356. <code>metadata</code> field.
  9357. </td>
  9358. </tr>
  9359. <tr>
  9360. <td>
  9361. <code>spec</code></br>
  9362. <em>
  9363. <a href="#external-secrets.io/v1.SecretStoreSpec">
  9364. SecretStoreSpec
  9365. </a>
  9366. </em>
  9367. </td>
  9368. <td>
  9369. <br/>
  9370. <br/>
  9371. <table>
  9372. <tr>
  9373. <td>
  9374. <code>controller</code></br>
  9375. <em>
  9376. string
  9377. </em>
  9378. </td>
  9379. <td>
  9380. <em>(Optional)</em>
  9381. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  9382. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  9383. </td>
  9384. </tr>
  9385. <tr>
  9386. <td>
  9387. <code>provider</code></br>
  9388. <em>
  9389. <a href="#external-secrets.io/v1.SecretStoreProvider">
  9390. SecretStoreProvider
  9391. </a>
  9392. </em>
  9393. </td>
  9394. <td>
  9395. <p>Used to configure the provider. Only one provider may be set</p>
  9396. </td>
  9397. </tr>
  9398. <tr>
  9399. <td>
  9400. <code>retrySettings</code></br>
  9401. <em>
  9402. <a href="#external-secrets.io/v1.SecretStoreRetrySettings">
  9403. SecretStoreRetrySettings
  9404. </a>
  9405. </em>
  9406. </td>
  9407. <td>
  9408. <em>(Optional)</em>
  9409. <p>Used to configure http retries if failed</p>
  9410. </td>
  9411. </tr>
  9412. <tr>
  9413. <td>
  9414. <code>refreshInterval</code></br>
  9415. <em>
  9416. int
  9417. </em>
  9418. </td>
  9419. <td>
  9420. <em>(Optional)</em>
  9421. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  9422. </td>
  9423. </tr>
  9424. <tr>
  9425. <td>
  9426. <code>conditions</code></br>
  9427. <em>
  9428. <a href="#external-secrets.io/v1.ClusterSecretStoreCondition">
  9429. []ClusterSecretStoreCondition
  9430. </a>
  9431. </em>
  9432. </td>
  9433. <td>
  9434. <em>(Optional)</em>
  9435. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  9436. </td>
  9437. </tr>
  9438. </table>
  9439. </td>
  9440. </tr>
  9441. <tr>
  9442. <td>
  9443. <code>status</code></br>
  9444. <em>
  9445. <a href="#external-secrets.io/v1.SecretStoreStatus">
  9446. SecretStoreStatus
  9447. </a>
  9448. </em>
  9449. </td>
  9450. <td>
  9451. </td>
  9452. </tr>
  9453. </tbody>
  9454. </table>
  9455. <h3 id="external-secrets.io/v1.SecretStoreCapabilities">SecretStoreCapabilities
  9456. (<code>string</code> alias)</p></h3>
  9457. <p>
  9458. (<em>Appears on:</em>
  9459. <a href="#external-secrets.io/v1.SecretStoreStatus">SecretStoreStatus</a>)
  9460. </p>
  9461. <p>
  9462. <p>SecretStoreCapabilities defines the possible operations a SecretStore can do.</p>
  9463. </p>
  9464. <table>
  9465. <thead>
  9466. <tr>
  9467. <th>Value</th>
  9468. <th>Description</th>
  9469. </tr>
  9470. </thead>
  9471. <tbody><tr><td><p>&#34;ReadOnly&#34;</p></td>
  9472. <td></td>
  9473. </tr><tr><td><p>&#34;ReadWrite&#34;</p></td>
  9474. <td></td>
  9475. </tr><tr><td><p>&#34;WriteOnly&#34;</p></td>
  9476. <td></td>
  9477. </tr></tbody>
  9478. </table>
  9479. <h3 id="external-secrets.io/v1.SecretStoreConditionType">SecretStoreConditionType
  9480. (<code>string</code> alias)</p></h3>
  9481. <p>
  9482. (<em>Appears on:</em>
  9483. <a href="#external-secrets.io/v1.SecretStoreStatusCondition">SecretStoreStatusCondition</a>)
  9484. </p>
  9485. <p>
  9486. </p>
  9487. <table>
  9488. <thead>
  9489. <tr>
  9490. <th>Value</th>
  9491. <th>Description</th>
  9492. </tr>
  9493. </thead>
  9494. <tbody><tr><td><p>&#34;Ready&#34;</p></td>
  9495. <td></td>
  9496. </tr></tbody>
  9497. </table>
  9498. <h3 id="external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider
  9499. </h3>
  9500. <p>
  9501. (<em>Appears on:</em>
  9502. <a href="#external-secrets.io/v1.SecretStoreSpec">SecretStoreSpec</a>)
  9503. </p>
  9504. <p>
  9505. <p>SecretStoreProvider contains the provider-specific configuration.</p>
  9506. </p>
  9507. <table>
  9508. <thead>
  9509. <tr>
  9510. <th>Field</th>
  9511. <th>Description</th>
  9512. </tr>
  9513. </thead>
  9514. <tbody>
  9515. <tr>
  9516. <td>
  9517. <code>aws</code></br>
  9518. <em>
  9519. <a href="#external-secrets.io/v1.AWSProvider">
  9520. AWSProvider
  9521. </a>
  9522. </em>
  9523. </td>
  9524. <td>
  9525. <em>(Optional)</em>
  9526. <p>AWS configures this store to sync secrets using AWS Secret Manager provider</p>
  9527. </td>
  9528. </tr>
  9529. <tr>
  9530. <td>
  9531. <code>azurekv</code></br>
  9532. <em>
  9533. <a href="#external-secrets.io/v1.AzureKVProvider">
  9534. AzureKVProvider
  9535. </a>
  9536. </em>
  9537. </td>
  9538. <td>
  9539. <em>(Optional)</em>
  9540. <p>AzureKV configures this store to sync secrets using Azure Key Vault provider</p>
  9541. </td>
  9542. </tr>
  9543. <tr>
  9544. <td>
  9545. <code>akeyless</code></br>
  9546. <em>
  9547. <a href="#external-secrets.io/v1.AkeylessProvider">
  9548. AkeylessProvider
  9549. </a>
  9550. </em>
  9551. </td>
  9552. <td>
  9553. <em>(Optional)</em>
  9554. <p>Akeyless configures this store to sync secrets using Akeyless Vault provider</p>
  9555. </td>
  9556. </tr>
  9557. <tr>
  9558. <td>
  9559. <code>bitwardensecretsmanager</code></br>
  9560. <em>
  9561. <a href="#external-secrets.io/v1.BitwardenSecretsManagerProvider">
  9562. BitwardenSecretsManagerProvider
  9563. </a>
  9564. </em>
  9565. </td>
  9566. <td>
  9567. <em>(Optional)</em>
  9568. <p>BitwardenSecretsManager configures this store to sync secrets using BitwardenSecretsManager provider</p>
  9569. </td>
  9570. </tr>
  9571. <tr>
  9572. <td>
  9573. <code>vault</code></br>
  9574. <em>
  9575. <a href="#external-secrets.io/v1.VaultProvider">
  9576. VaultProvider
  9577. </a>
  9578. </em>
  9579. </td>
  9580. <td>
  9581. <em>(Optional)</em>
  9582. <p>Vault configures this store to sync secrets using Hashi provider</p>
  9583. </td>
  9584. </tr>
  9585. <tr>
  9586. <td>
  9587. <code>gcpsm</code></br>
  9588. <em>
  9589. <a href="#external-secrets.io/v1.GCPSMProvider">
  9590. GCPSMProvider
  9591. </a>
  9592. </em>
  9593. </td>
  9594. <td>
  9595. <em>(Optional)</em>
  9596. <p>GCPSM configures this store to sync secrets using Google Cloud Platform Secret Manager provider</p>
  9597. </td>
  9598. </tr>
  9599. <tr>
  9600. <td>
  9601. <code>oracle</code></br>
  9602. <em>
  9603. <a href="#external-secrets.io/v1.OracleProvider">
  9604. OracleProvider
  9605. </a>
  9606. </em>
  9607. </td>
  9608. <td>
  9609. <em>(Optional)</em>
  9610. <p>Oracle configures this store to sync secrets using Oracle Vault provider</p>
  9611. </td>
  9612. </tr>
  9613. <tr>
  9614. <td>
  9615. <code>ibm</code></br>
  9616. <em>
  9617. <a href="#external-secrets.io/v1.IBMProvider">
  9618. IBMProvider
  9619. </a>
  9620. </em>
  9621. </td>
  9622. <td>
  9623. <em>(Optional)</em>
  9624. <p>IBM configures this store to sync secrets using IBM Cloud provider</p>
  9625. </td>
  9626. </tr>
  9627. <tr>
  9628. <td>
  9629. <code>yandexcertificatemanager</code></br>
  9630. <em>
  9631. <a href="#external-secrets.io/v1.YandexCertificateManagerProvider">
  9632. YandexCertificateManagerProvider
  9633. </a>
  9634. </em>
  9635. </td>
  9636. <td>
  9637. <em>(Optional)</em>
  9638. <p>YandexCertificateManager configures this store to sync secrets using Yandex Certificate Manager provider</p>
  9639. </td>
  9640. </tr>
  9641. <tr>
  9642. <td>
  9643. <code>yandexlockbox</code></br>
  9644. <em>
  9645. <a href="#external-secrets.io/v1.YandexLockboxProvider">
  9646. YandexLockboxProvider
  9647. </a>
  9648. </em>
  9649. </td>
  9650. <td>
  9651. <em>(Optional)</em>
  9652. <p>YandexLockbox configures this store to sync secrets using Yandex Lockbox provider</p>
  9653. </td>
  9654. </tr>
  9655. <tr>
  9656. <td>
  9657. <code>github</code></br>
  9658. <em>
  9659. <a href="#external-secrets.io/v1.GithubProvider">
  9660. GithubProvider
  9661. </a>
  9662. </em>
  9663. </td>
  9664. <td>
  9665. <em>(Optional)</em>
  9666. <p>Github configures this store to push Github Action secrets using Github API provider</p>
  9667. </td>
  9668. </tr>
  9669. <tr>
  9670. <td>
  9671. <code>gitlab</code></br>
  9672. <em>
  9673. <a href="#external-secrets.io/v1.GitlabProvider">
  9674. GitlabProvider
  9675. </a>
  9676. </em>
  9677. </td>
  9678. <td>
  9679. <em>(Optional)</em>
  9680. <p>GitLab configures this store to sync secrets using GitLab Variables provider</p>
  9681. </td>
  9682. </tr>
  9683. <tr>
  9684. <td>
  9685. <code>alibaba</code></br>
  9686. <em>
  9687. <a href="#external-secrets.io/v1.AlibabaProvider">
  9688. AlibabaProvider
  9689. </a>
  9690. </em>
  9691. </td>
  9692. <td>
  9693. <em>(Optional)</em>
  9694. <p>Alibaba configures this store to sync secrets using Alibaba Cloud provider</p>
  9695. </td>
  9696. </tr>
  9697. <tr>
  9698. <td>
  9699. <code>onepassword</code></br>
  9700. <em>
  9701. <a href="#external-secrets.io/v1.OnePasswordProvider">
  9702. OnePasswordProvider
  9703. </a>
  9704. </em>
  9705. </td>
  9706. <td>
  9707. <em>(Optional)</em>
  9708. <p>OnePassword configures this store to sync secrets using the 1Password Cloud provider</p>
  9709. </td>
  9710. </tr>
  9711. <tr>
  9712. <td>
  9713. <code>onepasswordSDK</code></br>
  9714. <em>
  9715. <a href="#external-secrets.io/v1.OnePasswordSDKProvider">
  9716. OnePasswordSDKProvider
  9717. </a>
  9718. </em>
  9719. </td>
  9720. <td>
  9721. <em>(Optional)</em>
  9722. <p>OnePasswordSDK configures this store to use 1Password&rsquo;s new Go SDK to sync secrets.</p>
  9723. </td>
  9724. </tr>
  9725. <tr>
  9726. <td>
  9727. <code>webhook</code></br>
  9728. <em>
  9729. <a href="#external-secrets.io/v1.WebhookProvider">
  9730. WebhookProvider
  9731. </a>
  9732. </em>
  9733. </td>
  9734. <td>
  9735. <em>(Optional)</em>
  9736. <p>Webhook configures this store to sync secrets using a generic templated webhook</p>
  9737. </td>
  9738. </tr>
  9739. <tr>
  9740. <td>
  9741. <code>kubernetes</code></br>
  9742. <em>
  9743. <a href="#external-secrets.io/v1.KubernetesProvider">
  9744. KubernetesProvider
  9745. </a>
  9746. </em>
  9747. </td>
  9748. <td>
  9749. <em>(Optional)</em>
  9750. <p>Kubernetes configures this store to sync secrets using a Kubernetes cluster provider</p>
  9751. </td>
  9752. </tr>
  9753. <tr>
  9754. <td>
  9755. <code>fake</code></br>
  9756. <em>
  9757. <a href="#external-secrets.io/v1.FakeProvider">
  9758. FakeProvider
  9759. </a>
  9760. </em>
  9761. </td>
  9762. <td>
  9763. <em>(Optional)</em>
  9764. <p>Fake configures a store with static key/value pairs</p>
  9765. </td>
  9766. </tr>
  9767. <tr>
  9768. <td>
  9769. <code>senhasegura</code></br>
  9770. <em>
  9771. <a href="#external-secrets.io/v1.SenhaseguraProvider">
  9772. SenhaseguraProvider
  9773. </a>
  9774. </em>
  9775. </td>
  9776. <td>
  9777. <em>(Optional)</em>
  9778. <p>Senhasegura configures this store to sync secrets using senhasegura provider</p>
  9779. </td>
  9780. </tr>
  9781. <tr>
  9782. <td>
  9783. <code>scaleway</code></br>
  9784. <em>
  9785. <a href="#external-secrets.io/v1.ScalewayProvider">
  9786. ScalewayProvider
  9787. </a>
  9788. </em>
  9789. </td>
  9790. <td>
  9791. <em>(Optional)</em>
  9792. <p>Scaleway</p>
  9793. </td>
  9794. </tr>
  9795. <tr>
  9796. <td>
  9797. <code>doppler</code></br>
  9798. <em>
  9799. <a href="#external-secrets.io/v1.DopplerProvider">
  9800. DopplerProvider
  9801. </a>
  9802. </em>
  9803. </td>
  9804. <td>
  9805. <em>(Optional)</em>
  9806. <p>Doppler configures this store to sync secrets using the Doppler provider</p>
  9807. </td>
  9808. </tr>
  9809. <tr>
  9810. <td>
  9811. <code>previder</code></br>
  9812. <em>
  9813. <a href="#external-secrets.io/v1.PreviderProvider">
  9814. PreviderProvider
  9815. </a>
  9816. </em>
  9817. </td>
  9818. <td>
  9819. <em>(Optional)</em>
  9820. <p>Previder configures this store to sync secrets using the Previder provider</p>
  9821. </td>
  9822. </tr>
  9823. <tr>
  9824. <td>
  9825. <code>onboardbase</code></br>
  9826. <em>
  9827. <a href="#external-secrets.io/v1.OnboardbaseProvider">
  9828. OnboardbaseProvider
  9829. </a>
  9830. </em>
  9831. </td>
  9832. <td>
  9833. <em>(Optional)</em>
  9834. <p>Onboardbase configures this store to sync secrets using the Onboardbase provider</p>
  9835. </td>
  9836. </tr>
  9837. <tr>
  9838. <td>
  9839. <code>keepersecurity</code></br>
  9840. <em>
  9841. <a href="#external-secrets.io/v1.KeeperSecurityProvider">
  9842. KeeperSecurityProvider
  9843. </a>
  9844. </em>
  9845. </td>
  9846. <td>
  9847. <em>(Optional)</em>
  9848. <p>KeeperSecurity configures this store to sync secrets using the KeeperSecurity provider</p>
  9849. </td>
  9850. </tr>
  9851. <tr>
  9852. <td>
  9853. <code>conjur</code></br>
  9854. <em>
  9855. <a href="#external-secrets.io/v1.ConjurProvider">
  9856. ConjurProvider
  9857. </a>
  9858. </em>
  9859. </td>
  9860. <td>
  9861. <em>(Optional)</em>
  9862. <p>Conjur configures this store to sync secrets using conjur provider</p>
  9863. </td>
  9864. </tr>
  9865. <tr>
  9866. <td>
  9867. <code>delinea</code></br>
  9868. <em>
  9869. <a href="#external-secrets.io/v1.DelineaProvider">
  9870. DelineaProvider
  9871. </a>
  9872. </em>
  9873. </td>
  9874. <td>
  9875. <em>(Optional)</em>
  9876. <p>Delinea DevOps Secrets Vault
  9877. <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>
  9878. </td>
  9879. </tr>
  9880. <tr>
  9881. <td>
  9882. <code>secretserver</code></br>
  9883. <em>
  9884. <a href="#external-secrets.io/v1.SecretServerProvider">
  9885. SecretServerProvider
  9886. </a>
  9887. </em>
  9888. </td>
  9889. <td>
  9890. <em>(Optional)</em>
  9891. <p>SecretServer configures this store to sync secrets using SecretServer provider
  9892. <a href="https://docs.delinea.com/online-help/secret-server/start.htm">https://docs.delinea.com/online-help/secret-server/start.htm</a></p>
  9893. </td>
  9894. </tr>
  9895. <tr>
  9896. <td>
  9897. <code>chef</code></br>
  9898. <em>
  9899. <a href="#external-secrets.io/v1.ChefProvider">
  9900. ChefProvider
  9901. </a>
  9902. </em>
  9903. </td>
  9904. <td>
  9905. <em>(Optional)</em>
  9906. <p>Chef configures this store to sync secrets with chef server</p>
  9907. </td>
  9908. </tr>
  9909. <tr>
  9910. <td>
  9911. <code>pulumi</code></br>
  9912. <em>
  9913. <a href="#external-secrets.io/v1.PulumiProvider">
  9914. PulumiProvider
  9915. </a>
  9916. </em>
  9917. </td>
  9918. <td>
  9919. <em>(Optional)</em>
  9920. <p>Pulumi configures this store to sync secrets using the Pulumi provider</p>
  9921. </td>
  9922. </tr>
  9923. <tr>
  9924. <td>
  9925. <code>fortanix</code></br>
  9926. <em>
  9927. <a href="#external-secrets.io/v1.FortanixProvider">
  9928. FortanixProvider
  9929. </a>
  9930. </em>
  9931. </td>
  9932. <td>
  9933. <em>(Optional)</em>
  9934. <p>Fortanix configures this store to sync secrets using the Fortanix provider</p>
  9935. </td>
  9936. </tr>
  9937. <tr>
  9938. <td>
  9939. <code>passworddepot</code></br>
  9940. <em>
  9941. <a href="#external-secrets.io/v1.PasswordDepotProvider">
  9942. PasswordDepotProvider
  9943. </a>
  9944. </em>
  9945. </td>
  9946. <td>
  9947. <em>(Optional)</em>
  9948. </td>
  9949. </tr>
  9950. <tr>
  9951. <td>
  9952. <code>passbolt</code></br>
  9953. <em>
  9954. <a href="#external-secrets.io/v1.PassboltProvider">
  9955. PassboltProvider
  9956. </a>
  9957. </em>
  9958. </td>
  9959. <td>
  9960. <em>(Optional)</em>
  9961. </td>
  9962. </tr>
  9963. <tr>
  9964. <td>
  9965. <code>device42</code></br>
  9966. <em>
  9967. <a href="#external-secrets.io/v1.Device42Provider">
  9968. Device42Provider
  9969. </a>
  9970. </em>
  9971. </td>
  9972. <td>
  9973. <em>(Optional)</em>
  9974. <p>Device42 configures this store to sync secrets using the Device42 provider</p>
  9975. </td>
  9976. </tr>
  9977. <tr>
  9978. <td>
  9979. <code>infisical</code></br>
  9980. <em>
  9981. <a href="#external-secrets.io/v1.InfisicalProvider">
  9982. InfisicalProvider
  9983. </a>
  9984. </em>
  9985. </td>
  9986. <td>
  9987. <em>(Optional)</em>
  9988. <p>Infisical configures this store to sync secrets using the Infisical provider</p>
  9989. </td>
  9990. </tr>
  9991. <tr>
  9992. <td>
  9993. <code>beyondtrust</code></br>
  9994. <em>
  9995. <a href="#external-secrets.io/v1.BeyondtrustProvider">
  9996. BeyondtrustProvider
  9997. </a>
  9998. </em>
  9999. </td>
  10000. <td>
  10001. <em>(Optional)</em>
  10002. <p>Beyondtrust configures this store to sync secrets using Password Safe provider.</p>
  10003. </td>
  10004. </tr>
  10005. <tr>
  10006. <td>
  10007. <code>cloudrusm</code></br>
  10008. <em>
  10009. <a href="#external-secrets.io/v1.CloudruSMProvider">
  10010. CloudruSMProvider
  10011. </a>
  10012. </em>
  10013. </td>
  10014. <td>
  10015. <em>(Optional)</em>
  10016. <p>CloudruSM configures this store to sync secrets using the Cloud.ru Secret Manager provider</p>
  10017. </td>
  10018. </tr>
  10019. </tbody>
  10020. </table>
  10021. <h3 id="external-secrets.io/v1.SecretStoreRef">SecretStoreRef
  10022. </h3>
  10023. <p>
  10024. (<em>Appears on:</em>
  10025. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>,
  10026. <a href="#external-secrets.io/v1.StoreGeneratorSourceRef">StoreGeneratorSourceRef</a>,
  10027. <a href="#external-secrets.io/v1.StoreSourceRef">StoreSourceRef</a>)
  10028. </p>
  10029. <p>
  10030. <p>SecretStoreRef defines which SecretStore to fetch the ExternalSecret data.</p>
  10031. </p>
  10032. <table>
  10033. <thead>
  10034. <tr>
  10035. <th>Field</th>
  10036. <th>Description</th>
  10037. </tr>
  10038. </thead>
  10039. <tbody>
  10040. <tr>
  10041. <td>
  10042. <code>name</code></br>
  10043. <em>
  10044. string
  10045. </em>
  10046. </td>
  10047. <td>
  10048. <p>Name of the SecretStore resource</p>
  10049. </td>
  10050. </tr>
  10051. <tr>
  10052. <td>
  10053. <code>kind</code></br>
  10054. <em>
  10055. string
  10056. </em>
  10057. </td>
  10058. <td>
  10059. <em>(Optional)</em>
  10060. <p>Kind of the SecretStore resource (SecretStore or ClusterSecretStore)
  10061. Defaults to <code>SecretStore</code></p>
  10062. </td>
  10063. </tr>
  10064. </tbody>
  10065. </table>
  10066. <h3 id="external-secrets.io/v1.SecretStoreRetrySettings">SecretStoreRetrySettings
  10067. </h3>
  10068. <p>
  10069. (<em>Appears on:</em>
  10070. <a href="#external-secrets.io/v1.SecretStoreSpec">SecretStoreSpec</a>)
  10071. </p>
  10072. <p>
  10073. </p>
  10074. <table>
  10075. <thead>
  10076. <tr>
  10077. <th>Field</th>
  10078. <th>Description</th>
  10079. </tr>
  10080. </thead>
  10081. <tbody>
  10082. <tr>
  10083. <td>
  10084. <code>maxRetries</code></br>
  10085. <em>
  10086. int32
  10087. </em>
  10088. </td>
  10089. <td>
  10090. </td>
  10091. </tr>
  10092. <tr>
  10093. <td>
  10094. <code>retryInterval</code></br>
  10095. <em>
  10096. string
  10097. </em>
  10098. </td>
  10099. <td>
  10100. </td>
  10101. </tr>
  10102. </tbody>
  10103. </table>
  10104. <h3 id="external-secrets.io/v1.SecretStoreSpec">SecretStoreSpec
  10105. </h3>
  10106. <p>
  10107. (<em>Appears on:</em>
  10108. <a href="#external-secrets.io/v1.ClusterSecretStore">ClusterSecretStore</a>,
  10109. <a href="#external-secrets.io/v1.SecretStore">SecretStore</a>)
  10110. </p>
  10111. <p>
  10112. <p>SecretStoreSpec defines the desired state of SecretStore.</p>
  10113. </p>
  10114. <table>
  10115. <thead>
  10116. <tr>
  10117. <th>Field</th>
  10118. <th>Description</th>
  10119. </tr>
  10120. </thead>
  10121. <tbody>
  10122. <tr>
  10123. <td>
  10124. <code>controller</code></br>
  10125. <em>
  10126. string
  10127. </em>
  10128. </td>
  10129. <td>
  10130. <em>(Optional)</em>
  10131. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  10132. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  10133. </td>
  10134. </tr>
  10135. <tr>
  10136. <td>
  10137. <code>provider</code></br>
  10138. <em>
  10139. <a href="#external-secrets.io/v1.SecretStoreProvider">
  10140. SecretStoreProvider
  10141. </a>
  10142. </em>
  10143. </td>
  10144. <td>
  10145. <p>Used to configure the provider. Only one provider may be set</p>
  10146. </td>
  10147. </tr>
  10148. <tr>
  10149. <td>
  10150. <code>retrySettings</code></br>
  10151. <em>
  10152. <a href="#external-secrets.io/v1.SecretStoreRetrySettings">
  10153. SecretStoreRetrySettings
  10154. </a>
  10155. </em>
  10156. </td>
  10157. <td>
  10158. <em>(Optional)</em>
  10159. <p>Used to configure http retries if failed</p>
  10160. </td>
  10161. </tr>
  10162. <tr>
  10163. <td>
  10164. <code>refreshInterval</code></br>
  10165. <em>
  10166. int
  10167. </em>
  10168. </td>
  10169. <td>
  10170. <em>(Optional)</em>
  10171. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  10172. </td>
  10173. </tr>
  10174. <tr>
  10175. <td>
  10176. <code>conditions</code></br>
  10177. <em>
  10178. <a href="#external-secrets.io/v1.ClusterSecretStoreCondition">
  10179. []ClusterSecretStoreCondition
  10180. </a>
  10181. </em>
  10182. </td>
  10183. <td>
  10184. <em>(Optional)</em>
  10185. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  10186. </td>
  10187. </tr>
  10188. </tbody>
  10189. </table>
  10190. <h3 id="external-secrets.io/v1.SecretStoreStatus">SecretStoreStatus
  10191. </h3>
  10192. <p>
  10193. (<em>Appears on:</em>
  10194. <a href="#external-secrets.io/v1.ClusterSecretStore">ClusterSecretStore</a>,
  10195. <a href="#external-secrets.io/v1.SecretStore">SecretStore</a>)
  10196. </p>
  10197. <p>
  10198. <p>SecretStoreStatus defines the observed state of the SecretStore.</p>
  10199. </p>
  10200. <table>
  10201. <thead>
  10202. <tr>
  10203. <th>Field</th>
  10204. <th>Description</th>
  10205. </tr>
  10206. </thead>
  10207. <tbody>
  10208. <tr>
  10209. <td>
  10210. <code>conditions</code></br>
  10211. <em>
  10212. <a href="#external-secrets.io/v1.SecretStoreStatusCondition">
  10213. []SecretStoreStatusCondition
  10214. </a>
  10215. </em>
  10216. </td>
  10217. <td>
  10218. <em>(Optional)</em>
  10219. </td>
  10220. </tr>
  10221. <tr>
  10222. <td>
  10223. <code>capabilities</code></br>
  10224. <em>
  10225. <a href="#external-secrets.io/v1.SecretStoreCapabilities">
  10226. SecretStoreCapabilities
  10227. </a>
  10228. </em>
  10229. </td>
  10230. <td>
  10231. <em>(Optional)</em>
  10232. </td>
  10233. </tr>
  10234. </tbody>
  10235. </table>
  10236. <h3 id="external-secrets.io/v1.SecretStoreStatusCondition">SecretStoreStatusCondition
  10237. </h3>
  10238. <p>
  10239. (<em>Appears on:</em>
  10240. <a href="#external-secrets.io/v1.SecretStoreStatus">SecretStoreStatus</a>)
  10241. </p>
  10242. <p>
  10243. </p>
  10244. <table>
  10245. <thead>
  10246. <tr>
  10247. <th>Field</th>
  10248. <th>Description</th>
  10249. </tr>
  10250. </thead>
  10251. <tbody>
  10252. <tr>
  10253. <td>
  10254. <code>type</code></br>
  10255. <em>
  10256. <a href="#external-secrets.io/v1.SecretStoreConditionType">
  10257. SecretStoreConditionType
  10258. </a>
  10259. </em>
  10260. </td>
  10261. <td>
  10262. </td>
  10263. </tr>
  10264. <tr>
  10265. <td>
  10266. <code>status</code></br>
  10267. <em>
  10268. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  10269. Kubernetes core/v1.ConditionStatus
  10270. </a>
  10271. </em>
  10272. </td>
  10273. <td>
  10274. </td>
  10275. </tr>
  10276. <tr>
  10277. <td>
  10278. <code>reason</code></br>
  10279. <em>
  10280. string
  10281. </em>
  10282. </td>
  10283. <td>
  10284. <em>(Optional)</em>
  10285. </td>
  10286. </tr>
  10287. <tr>
  10288. <td>
  10289. <code>message</code></br>
  10290. <em>
  10291. string
  10292. </em>
  10293. </td>
  10294. <td>
  10295. <em>(Optional)</em>
  10296. </td>
  10297. </tr>
  10298. <tr>
  10299. <td>
  10300. <code>lastTransitionTime</code></br>
  10301. <em>
  10302. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  10303. Kubernetes meta/v1.Time
  10304. </a>
  10305. </em>
  10306. </td>
  10307. <td>
  10308. <em>(Optional)</em>
  10309. </td>
  10310. </tr>
  10311. </tbody>
  10312. </table>
  10313. <h3 id="external-secrets.io/v1.SecretsClient">SecretsClient
  10314. </h3>
  10315. <p>
  10316. <p>SecretsClient provides access to secrets.</p>
  10317. </p>
  10318. <h3 id="external-secrets.io/v1.SecretsManager">SecretsManager
  10319. </h3>
  10320. <p>
  10321. (<em>Appears on:</em>
  10322. <a href="#external-secrets.io/v1.AWSProvider">AWSProvider</a>)
  10323. </p>
  10324. <p>
  10325. <p>SecretsManager defines how the provider behaves when interacting with AWS
  10326. SecretsManager. Some of these settings are only applicable to controlling how
  10327. secrets are deleted, and hence only apply to PushSecret (and only when
  10328. deletionPolicy is set to Delete).</p>
  10329. </p>
  10330. <table>
  10331. <thead>
  10332. <tr>
  10333. <th>Field</th>
  10334. <th>Description</th>
  10335. </tr>
  10336. </thead>
  10337. <tbody>
  10338. <tr>
  10339. <td>
  10340. <code>forceDeleteWithoutRecovery</code></br>
  10341. <em>
  10342. bool
  10343. </em>
  10344. </td>
  10345. <td>
  10346. <em>(Optional)</em>
  10347. <p>Specifies whether to delete the secret without any recovery window. You
  10348. can&rsquo;t use both this parameter and RecoveryWindowInDays in the same call.
  10349. If you don&rsquo;t use either, then by default Secrets Manager uses a 30 day
  10350. recovery window.
  10351. 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>
  10352. </td>
  10353. </tr>
  10354. <tr>
  10355. <td>
  10356. <code>recoveryWindowInDays</code></br>
  10357. <em>
  10358. int64
  10359. </em>
  10360. </td>
  10361. <td>
  10362. <em>(Optional)</em>
  10363. <p>The number of days from 7 to 30 that Secrets Manager waits before
  10364. permanently deleting the secret. You can&rsquo;t use both this parameter and
  10365. ForceDeleteWithoutRecovery in the same call. If you don&rsquo;t use either,
  10366. then by default Secrets Manager uses a 30 day recovery window.
  10367. 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>
  10368. </td>
  10369. </tr>
  10370. </tbody>
  10371. </table>
  10372. <h3 id="external-secrets.io/v1.SenhaseguraAuth">SenhaseguraAuth
  10373. </h3>
  10374. <p>
  10375. (<em>Appears on:</em>
  10376. <a href="#external-secrets.io/v1.SenhaseguraProvider">SenhaseguraProvider</a>)
  10377. </p>
  10378. <p>
  10379. <p>SenhaseguraAuth tells the controller how to do auth in senhasegura.</p>
  10380. </p>
  10381. <table>
  10382. <thead>
  10383. <tr>
  10384. <th>Field</th>
  10385. <th>Description</th>
  10386. </tr>
  10387. </thead>
  10388. <tbody>
  10389. <tr>
  10390. <td>
  10391. <code>clientId</code></br>
  10392. <em>
  10393. string
  10394. </em>
  10395. </td>
  10396. <td>
  10397. </td>
  10398. </tr>
  10399. <tr>
  10400. <td>
  10401. <code>clientSecretSecretRef</code></br>
  10402. <em>
  10403. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10404. External Secrets meta/v1.SecretKeySelector
  10405. </a>
  10406. </em>
  10407. </td>
  10408. <td>
  10409. </td>
  10410. </tr>
  10411. </tbody>
  10412. </table>
  10413. <h3 id="external-secrets.io/v1.SenhaseguraModuleType">SenhaseguraModuleType
  10414. (<code>string</code> alias)</p></h3>
  10415. <p>
  10416. (<em>Appears on:</em>
  10417. <a href="#external-secrets.io/v1.SenhaseguraProvider">SenhaseguraProvider</a>)
  10418. </p>
  10419. <p>
  10420. <p>SenhaseguraModuleType enum defines senhasegura target module to fetch secrets</p>
  10421. </p>
  10422. <table>
  10423. <thead>
  10424. <tr>
  10425. <th>Value</th>
  10426. <th>Description</th>
  10427. </tr>
  10428. </thead>
  10429. <tbody><tr><td><p>&#34;DSM&#34;</p></td>
  10430. <td><pre><code> SenhaseguraModuleDSM is the senhasegura DevOps Secrets Management module
  10431. see: https://senhasegura.com/devops
  10432. </code></pre>
  10433. </td>
  10434. </tr></tbody>
  10435. </table>
  10436. <h3 id="external-secrets.io/v1.SenhaseguraProvider">SenhaseguraProvider
  10437. </h3>
  10438. <p>
  10439. (<em>Appears on:</em>
  10440. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  10441. </p>
  10442. <p>
  10443. <p>SenhaseguraProvider setup a store to sync secrets with senhasegura.</p>
  10444. </p>
  10445. <table>
  10446. <thead>
  10447. <tr>
  10448. <th>Field</th>
  10449. <th>Description</th>
  10450. </tr>
  10451. </thead>
  10452. <tbody>
  10453. <tr>
  10454. <td>
  10455. <code>url</code></br>
  10456. <em>
  10457. string
  10458. </em>
  10459. </td>
  10460. <td>
  10461. <p>URL of senhasegura</p>
  10462. </td>
  10463. </tr>
  10464. <tr>
  10465. <td>
  10466. <code>module</code></br>
  10467. <em>
  10468. <a href="#external-secrets.io/v1.SenhaseguraModuleType">
  10469. SenhaseguraModuleType
  10470. </a>
  10471. </em>
  10472. </td>
  10473. <td>
  10474. <p>Module defines which senhasegura module should be used to get secrets</p>
  10475. </td>
  10476. </tr>
  10477. <tr>
  10478. <td>
  10479. <code>auth</code></br>
  10480. <em>
  10481. <a href="#external-secrets.io/v1.SenhaseguraAuth">
  10482. SenhaseguraAuth
  10483. </a>
  10484. </em>
  10485. </td>
  10486. <td>
  10487. <p>Auth defines parameters to authenticate in senhasegura</p>
  10488. </td>
  10489. </tr>
  10490. <tr>
  10491. <td>
  10492. <code>ignoreSslCertificate</code></br>
  10493. <em>
  10494. bool
  10495. </em>
  10496. </td>
  10497. <td>
  10498. <p>IgnoreSslCertificate defines if SSL certificate must be ignored</p>
  10499. </td>
  10500. </tr>
  10501. </tbody>
  10502. </table>
  10503. <h3 id="external-secrets.io/v1.StoreGeneratorSourceRef">StoreGeneratorSourceRef
  10504. </h3>
  10505. <p>
  10506. (<em>Appears on:</em>
  10507. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  10508. </p>
  10509. <p>
  10510. <p>StoreGeneratorSourceRef allows you to override the source
  10511. from which the secret will be pulled from.
  10512. You can define at maximum one property.</p>
  10513. </p>
  10514. <table>
  10515. <thead>
  10516. <tr>
  10517. <th>Field</th>
  10518. <th>Description</th>
  10519. </tr>
  10520. </thead>
  10521. <tbody>
  10522. <tr>
  10523. <td>
  10524. <code>storeRef</code></br>
  10525. <em>
  10526. <a href="#external-secrets.io/v1.SecretStoreRef">
  10527. SecretStoreRef
  10528. </a>
  10529. </em>
  10530. </td>
  10531. <td>
  10532. <em>(Optional)</em>
  10533. </td>
  10534. </tr>
  10535. <tr>
  10536. <td>
  10537. <code>generatorRef</code></br>
  10538. <em>
  10539. <a href="#external-secrets.io/v1.GeneratorRef">
  10540. GeneratorRef
  10541. </a>
  10542. </em>
  10543. </td>
  10544. <td>
  10545. <em>(Optional)</em>
  10546. <p>GeneratorRef points to a generator custom resource.</p>
  10547. </td>
  10548. </tr>
  10549. </tbody>
  10550. </table>
  10551. <h3 id="external-secrets.io/v1.StoreSourceRef">StoreSourceRef
  10552. </h3>
  10553. <p>
  10554. (<em>Appears on:</em>
  10555. <a href="#external-secrets.io/v1.ExternalSecretData">ExternalSecretData</a>)
  10556. </p>
  10557. <p>
  10558. <p>StoreSourceRef allows you to override the SecretStore source
  10559. from which the secret will be pulled from.
  10560. You can define at maximum one property.</p>
  10561. </p>
  10562. <table>
  10563. <thead>
  10564. <tr>
  10565. <th>Field</th>
  10566. <th>Description</th>
  10567. </tr>
  10568. </thead>
  10569. <tbody>
  10570. <tr>
  10571. <td>
  10572. <code>storeRef</code></br>
  10573. <em>
  10574. <a href="#external-secrets.io/v1.SecretStoreRef">
  10575. SecretStoreRef
  10576. </a>
  10577. </em>
  10578. </td>
  10579. <td>
  10580. <em>(Optional)</em>
  10581. </td>
  10582. </tr>
  10583. <tr>
  10584. <td>
  10585. <code>generatorRef</code></br>
  10586. <em>
  10587. <a href="#external-secrets.io/v1.GeneratorRef">
  10588. GeneratorRef
  10589. </a>
  10590. </em>
  10591. </td>
  10592. <td>
  10593. <p>GeneratorRef points to a generator custom resource.</p>
  10594. <p>Deprecated: The generatorRef is not implemented in .data[].
  10595. this will be removed with v1.</p>
  10596. </td>
  10597. </tr>
  10598. </tbody>
  10599. </table>
  10600. <h3 id="external-secrets.io/v1.Tag">Tag
  10601. </h3>
  10602. <p>
  10603. </p>
  10604. <table>
  10605. <thead>
  10606. <tr>
  10607. <th>Field</th>
  10608. <th>Description</th>
  10609. </tr>
  10610. </thead>
  10611. <tbody>
  10612. <tr>
  10613. <td>
  10614. <code>key</code></br>
  10615. <em>
  10616. string
  10617. </em>
  10618. </td>
  10619. <td>
  10620. </td>
  10621. </tr>
  10622. <tr>
  10623. <td>
  10624. <code>value</code></br>
  10625. <em>
  10626. string
  10627. </em>
  10628. </td>
  10629. <td>
  10630. </td>
  10631. </tr>
  10632. </tbody>
  10633. </table>
  10634. <h3 id="external-secrets.io/v1.TemplateEngineVersion">TemplateEngineVersion
  10635. (<code>string</code> alias)</p></h3>
  10636. <p>
  10637. (<em>Appears on:</em>
  10638. <a href="#external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  10639. </p>
  10640. <p>
  10641. </p>
  10642. <table>
  10643. <thead>
  10644. <tr>
  10645. <th>Value</th>
  10646. <th>Description</th>
  10647. </tr>
  10648. </thead>
  10649. <tbody><tr><td><p>&#34;v2&#34;</p></td>
  10650. <td></td>
  10651. </tr></tbody>
  10652. </table>
  10653. <h3 id="external-secrets.io/v1.TemplateFrom">TemplateFrom
  10654. </h3>
  10655. <p>
  10656. (<em>Appears on:</em>
  10657. <a href="#external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  10658. </p>
  10659. <p>
  10660. </p>
  10661. <table>
  10662. <thead>
  10663. <tr>
  10664. <th>Field</th>
  10665. <th>Description</th>
  10666. </tr>
  10667. </thead>
  10668. <tbody>
  10669. <tr>
  10670. <td>
  10671. <code>configMap</code></br>
  10672. <em>
  10673. <a href="#external-secrets.io/v1.TemplateRef">
  10674. TemplateRef
  10675. </a>
  10676. </em>
  10677. </td>
  10678. <td>
  10679. </td>
  10680. </tr>
  10681. <tr>
  10682. <td>
  10683. <code>secret</code></br>
  10684. <em>
  10685. <a href="#external-secrets.io/v1.TemplateRef">
  10686. TemplateRef
  10687. </a>
  10688. </em>
  10689. </td>
  10690. <td>
  10691. </td>
  10692. </tr>
  10693. <tr>
  10694. <td>
  10695. <code>target</code></br>
  10696. <em>
  10697. <a href="#external-secrets.io/v1.TemplateTarget">
  10698. TemplateTarget
  10699. </a>
  10700. </em>
  10701. </td>
  10702. <td>
  10703. <em>(Optional)</em>
  10704. </td>
  10705. </tr>
  10706. <tr>
  10707. <td>
  10708. <code>literal</code></br>
  10709. <em>
  10710. string
  10711. </em>
  10712. </td>
  10713. <td>
  10714. <em>(Optional)</em>
  10715. </td>
  10716. </tr>
  10717. </tbody>
  10718. </table>
  10719. <h3 id="external-secrets.io/v1.TemplateMergePolicy">TemplateMergePolicy
  10720. (<code>string</code> alias)</p></h3>
  10721. <p>
  10722. (<em>Appears on:</em>
  10723. <a href="#external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  10724. </p>
  10725. <p>
  10726. </p>
  10727. <table>
  10728. <thead>
  10729. <tr>
  10730. <th>Value</th>
  10731. <th>Description</th>
  10732. </tr>
  10733. </thead>
  10734. <tbody><tr><td><p>&#34;Merge&#34;</p></td>
  10735. <td></td>
  10736. </tr><tr><td><p>&#34;Replace&#34;</p></td>
  10737. <td></td>
  10738. </tr></tbody>
  10739. </table>
  10740. <h3 id="external-secrets.io/v1.TemplateRef">TemplateRef
  10741. </h3>
  10742. <p>
  10743. (<em>Appears on:</em>
  10744. <a href="#external-secrets.io/v1.TemplateFrom">TemplateFrom</a>)
  10745. </p>
  10746. <p>
  10747. </p>
  10748. <table>
  10749. <thead>
  10750. <tr>
  10751. <th>Field</th>
  10752. <th>Description</th>
  10753. </tr>
  10754. </thead>
  10755. <tbody>
  10756. <tr>
  10757. <td>
  10758. <code>name</code></br>
  10759. <em>
  10760. string
  10761. </em>
  10762. </td>
  10763. <td>
  10764. <p>The name of the ConfigMap/Secret resource</p>
  10765. </td>
  10766. </tr>
  10767. <tr>
  10768. <td>
  10769. <code>items</code></br>
  10770. <em>
  10771. <a href="#external-secrets.io/v1.TemplateRefItem">
  10772. []TemplateRefItem
  10773. </a>
  10774. </em>
  10775. </td>
  10776. <td>
  10777. <p>A list of keys in the ConfigMap/Secret to use as templates for Secret data</p>
  10778. </td>
  10779. </tr>
  10780. </tbody>
  10781. </table>
  10782. <h3 id="external-secrets.io/v1.TemplateRefItem">TemplateRefItem
  10783. </h3>
  10784. <p>
  10785. (<em>Appears on:</em>
  10786. <a href="#external-secrets.io/v1.TemplateRef">TemplateRef</a>)
  10787. </p>
  10788. <p>
  10789. </p>
  10790. <table>
  10791. <thead>
  10792. <tr>
  10793. <th>Field</th>
  10794. <th>Description</th>
  10795. </tr>
  10796. </thead>
  10797. <tbody>
  10798. <tr>
  10799. <td>
  10800. <code>key</code></br>
  10801. <em>
  10802. string
  10803. </em>
  10804. </td>
  10805. <td>
  10806. <p>A key in the ConfigMap/Secret</p>
  10807. </td>
  10808. </tr>
  10809. <tr>
  10810. <td>
  10811. <code>templateAs</code></br>
  10812. <em>
  10813. <a href="#external-secrets.io/v1.TemplateScope">
  10814. TemplateScope
  10815. </a>
  10816. </em>
  10817. </td>
  10818. <td>
  10819. </td>
  10820. </tr>
  10821. </tbody>
  10822. </table>
  10823. <h3 id="external-secrets.io/v1.TemplateScope">TemplateScope
  10824. (<code>string</code> alias)</p></h3>
  10825. <p>
  10826. (<em>Appears on:</em>
  10827. <a href="#external-secrets.io/v1.TemplateRefItem">TemplateRefItem</a>)
  10828. </p>
  10829. <p>
  10830. </p>
  10831. <table>
  10832. <thead>
  10833. <tr>
  10834. <th>Value</th>
  10835. <th>Description</th>
  10836. </tr>
  10837. </thead>
  10838. <tbody><tr><td><p>&#34;KeysAndValues&#34;</p></td>
  10839. <td></td>
  10840. </tr><tr><td><p>&#34;Values&#34;</p></td>
  10841. <td></td>
  10842. </tr></tbody>
  10843. </table>
  10844. <h3 id="external-secrets.io/v1.TemplateTarget">TemplateTarget
  10845. (<code>string</code> alias)</p></h3>
  10846. <p>
  10847. (<em>Appears on:</em>
  10848. <a href="#external-secrets.io/v1.TemplateFrom">TemplateFrom</a>)
  10849. </p>
  10850. <p>
  10851. </p>
  10852. <table>
  10853. <thead>
  10854. <tr>
  10855. <th>Value</th>
  10856. <th>Description</th>
  10857. </tr>
  10858. </thead>
  10859. <tbody><tr><td><p>&#34;Annotations&#34;</p></td>
  10860. <td></td>
  10861. </tr><tr><td><p>&#34;Data&#34;</p></td>
  10862. <td></td>
  10863. </tr><tr><td><p>&#34;Labels&#34;</p></td>
  10864. <td></td>
  10865. </tr></tbody>
  10866. </table>
  10867. <h3 id="external-secrets.io/v1.TokenAuth">TokenAuth
  10868. </h3>
  10869. <p>
  10870. (<em>Appears on:</em>
  10871. <a href="#external-secrets.io/v1.KubernetesAuth">KubernetesAuth</a>)
  10872. </p>
  10873. <p>
  10874. </p>
  10875. <table>
  10876. <thead>
  10877. <tr>
  10878. <th>Field</th>
  10879. <th>Description</th>
  10880. </tr>
  10881. </thead>
  10882. <tbody>
  10883. <tr>
  10884. <td>
  10885. <code>bearerToken</code></br>
  10886. <em>
  10887. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10888. External Secrets meta/v1.SecretKeySelector
  10889. </a>
  10890. </em>
  10891. </td>
  10892. <td>
  10893. </td>
  10894. </tr>
  10895. </tbody>
  10896. </table>
  10897. <h3 id="external-secrets.io/v1.TokenAuthCredentials">TokenAuthCredentials
  10898. </h3>
  10899. <p>
  10900. (<em>Appears on:</em>
  10901. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  10902. </p>
  10903. <p>
  10904. </p>
  10905. <table>
  10906. <thead>
  10907. <tr>
  10908. <th>Field</th>
  10909. <th>Description</th>
  10910. </tr>
  10911. </thead>
  10912. <tbody>
  10913. <tr>
  10914. <td>
  10915. <code>accessToken</code></br>
  10916. <em>
  10917. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10918. External Secrets meta/v1.SecretKeySelector
  10919. </a>
  10920. </em>
  10921. </td>
  10922. <td>
  10923. </td>
  10924. </tr>
  10925. </tbody>
  10926. </table>
  10927. <h3 id="external-secrets.io/v1.UniversalAuthCredentials">UniversalAuthCredentials
  10928. </h3>
  10929. <p>
  10930. (<em>Appears on:</em>
  10931. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  10932. </p>
  10933. <p>
  10934. </p>
  10935. <table>
  10936. <thead>
  10937. <tr>
  10938. <th>Field</th>
  10939. <th>Description</th>
  10940. </tr>
  10941. </thead>
  10942. <tbody>
  10943. <tr>
  10944. <td>
  10945. <code>clientId</code></br>
  10946. <em>
  10947. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10948. External Secrets meta/v1.SecretKeySelector
  10949. </a>
  10950. </em>
  10951. </td>
  10952. <td>
  10953. </td>
  10954. </tr>
  10955. <tr>
  10956. <td>
  10957. <code>clientSecret</code></br>
  10958. <em>
  10959. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10960. External Secrets meta/v1.SecretKeySelector
  10961. </a>
  10962. </em>
  10963. </td>
  10964. <td>
  10965. </td>
  10966. </tr>
  10967. </tbody>
  10968. </table>
  10969. <h3 id="external-secrets.io/v1.ValidationResult">ValidationResult
  10970. (<code>byte</code> alias)</p></h3>
  10971. <p>
  10972. (<em>Appears on:</em>
  10973. <a href="#external-secrets.io/v1.FakeProvider">FakeProvider</a>)
  10974. </p>
  10975. <p>
  10976. </p>
  10977. <table>
  10978. <thead>
  10979. <tr>
  10980. <th>Value</th>
  10981. <th>Description</th>
  10982. </tr>
  10983. </thead>
  10984. <tbody><tr><td><p>2</p></td>
  10985. <td><p>Error indicates that there is a misconfiguration.</p>
  10986. </td>
  10987. </tr><tr><td><p>0</p></td>
  10988. <td><p>Ready indicates that the client is configured correctly
  10989. and can be used.</p>
  10990. </td>
  10991. </tr><tr><td><p>1</p></td>
  10992. <td><p>Unknown indicates that the client can be used
  10993. but information is missing and it can not be validated.</p>
  10994. </td>
  10995. </tr></tbody>
  10996. </table>
  10997. <h3 id="external-secrets.io/v1.VaultAppRole">VaultAppRole
  10998. </h3>
  10999. <p>
  11000. (<em>Appears on:</em>
  11001. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  11002. </p>
  11003. <p>
  11004. <p>VaultAppRole authenticates with Vault using the App Role auth mechanism,
  11005. with the role and secret stored in a Kubernetes Secret resource.</p>
  11006. </p>
  11007. <table>
  11008. <thead>
  11009. <tr>
  11010. <th>Field</th>
  11011. <th>Description</th>
  11012. </tr>
  11013. </thead>
  11014. <tbody>
  11015. <tr>
  11016. <td>
  11017. <code>path</code></br>
  11018. <em>
  11019. string
  11020. </em>
  11021. </td>
  11022. <td>
  11023. <p>Path where the App Role authentication backend is mounted
  11024. in Vault, e.g: &ldquo;approle&rdquo;</p>
  11025. </td>
  11026. </tr>
  11027. <tr>
  11028. <td>
  11029. <code>roleId</code></br>
  11030. <em>
  11031. string
  11032. </em>
  11033. </td>
  11034. <td>
  11035. <em>(Optional)</em>
  11036. <p>RoleID configured in the App Role authentication backend when setting
  11037. up the authentication backend in Vault.</p>
  11038. </td>
  11039. </tr>
  11040. <tr>
  11041. <td>
  11042. <code>roleRef</code></br>
  11043. <em>
  11044. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11045. External Secrets meta/v1.SecretKeySelector
  11046. </a>
  11047. </em>
  11048. </td>
  11049. <td>
  11050. <em>(Optional)</em>
  11051. <p>Reference to a key in a Secret that contains the App Role ID used
  11052. to authenticate with Vault.
  11053. The <code>key</code> field must be specified and denotes which entry within the Secret
  11054. resource is used as the app role id.</p>
  11055. </td>
  11056. </tr>
  11057. <tr>
  11058. <td>
  11059. <code>secretRef</code></br>
  11060. <em>
  11061. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11062. External Secrets meta/v1.SecretKeySelector
  11063. </a>
  11064. </em>
  11065. </td>
  11066. <td>
  11067. <p>Reference to a key in a Secret that contains the App Role secret used
  11068. to authenticate with Vault.
  11069. The <code>key</code> field must be specified and denotes which entry within the Secret
  11070. resource is used as the app role secret.</p>
  11071. </td>
  11072. </tr>
  11073. </tbody>
  11074. </table>
  11075. <h3 id="external-secrets.io/v1.VaultAuth">VaultAuth
  11076. </h3>
  11077. <p>
  11078. (<em>Appears on:</em>
  11079. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  11080. </p>
  11081. <p>
  11082. <p>VaultAuth is the configuration used to authenticate with a Vault server.
  11083. 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>
  11084. can be specified. A namespace to authenticate against can optionally be specified.</p>
  11085. </p>
  11086. <table>
  11087. <thead>
  11088. <tr>
  11089. <th>Field</th>
  11090. <th>Description</th>
  11091. </tr>
  11092. </thead>
  11093. <tbody>
  11094. <tr>
  11095. <td>
  11096. <code>namespace</code></br>
  11097. <em>
  11098. string
  11099. </em>
  11100. </td>
  11101. <td>
  11102. <em>(Optional)</em>
  11103. <p>Name of the vault namespace to authenticate to. This can be different than the namespace your secret is in.
  11104. Namespaces is a set of features within Vault Enterprise that allows
  11105. Vault environments to support Secure Multi-tenancy. e.g: &ldquo;ns1&rdquo;.
  11106. More about namespaces can be found here <a href="https://www.vaultproject.io/docs/enterprise/namespaces">https://www.vaultproject.io/docs/enterprise/namespaces</a>
  11107. This will default to Vault.Namespace field if set, or empty otherwise</p>
  11108. </td>
  11109. </tr>
  11110. <tr>
  11111. <td>
  11112. <code>tokenSecretRef</code></br>
  11113. <em>
  11114. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11115. External Secrets meta/v1.SecretKeySelector
  11116. </a>
  11117. </em>
  11118. </td>
  11119. <td>
  11120. <em>(Optional)</em>
  11121. <p>TokenSecretRef authenticates with Vault by presenting a token.</p>
  11122. </td>
  11123. </tr>
  11124. <tr>
  11125. <td>
  11126. <code>appRole</code></br>
  11127. <em>
  11128. <a href="#external-secrets.io/v1.VaultAppRole">
  11129. VaultAppRole
  11130. </a>
  11131. </em>
  11132. </td>
  11133. <td>
  11134. <em>(Optional)</em>
  11135. <p>AppRole authenticates with Vault using the App Role auth mechanism,
  11136. with the role and secret stored in a Kubernetes Secret resource.</p>
  11137. </td>
  11138. </tr>
  11139. <tr>
  11140. <td>
  11141. <code>kubernetes</code></br>
  11142. <em>
  11143. <a href="#external-secrets.io/v1.VaultKubernetesAuth">
  11144. VaultKubernetesAuth
  11145. </a>
  11146. </em>
  11147. </td>
  11148. <td>
  11149. <em>(Optional)</em>
  11150. <p>Kubernetes authenticates with Vault by passing the ServiceAccount
  11151. token stored in the named Secret resource to the Vault server.</p>
  11152. </td>
  11153. </tr>
  11154. <tr>
  11155. <td>
  11156. <code>ldap</code></br>
  11157. <em>
  11158. <a href="#external-secrets.io/v1.VaultLdapAuth">
  11159. VaultLdapAuth
  11160. </a>
  11161. </em>
  11162. </td>
  11163. <td>
  11164. <em>(Optional)</em>
  11165. <p>Ldap authenticates with Vault by passing username/password pair using
  11166. the LDAP authentication method</p>
  11167. </td>
  11168. </tr>
  11169. <tr>
  11170. <td>
  11171. <code>jwt</code></br>
  11172. <em>
  11173. <a href="#external-secrets.io/v1.VaultJwtAuth">
  11174. VaultJwtAuth
  11175. </a>
  11176. </em>
  11177. </td>
  11178. <td>
  11179. <em>(Optional)</em>
  11180. <p>Jwt authenticates with Vault by passing role and JWT token using the
  11181. JWT/OIDC authentication method</p>
  11182. </td>
  11183. </tr>
  11184. <tr>
  11185. <td>
  11186. <code>cert</code></br>
  11187. <em>
  11188. <a href="#external-secrets.io/v1.VaultCertAuth">
  11189. VaultCertAuth
  11190. </a>
  11191. </em>
  11192. </td>
  11193. <td>
  11194. <em>(Optional)</em>
  11195. <p>Cert authenticates with TLS Certificates by passing client certificate, private key and ca certificate
  11196. Cert authentication method</p>
  11197. </td>
  11198. </tr>
  11199. <tr>
  11200. <td>
  11201. <code>iam</code></br>
  11202. <em>
  11203. <a href="#external-secrets.io/v1.VaultIamAuth">
  11204. VaultIamAuth
  11205. </a>
  11206. </em>
  11207. </td>
  11208. <td>
  11209. <em>(Optional)</em>
  11210. <p>Iam authenticates with vault by passing a special AWS request signed with AWS IAM credentials
  11211. AWS IAM authentication method</p>
  11212. </td>
  11213. </tr>
  11214. <tr>
  11215. <td>
  11216. <code>userPass</code></br>
  11217. <em>
  11218. <a href="#external-secrets.io/v1.VaultUserPassAuth">
  11219. VaultUserPassAuth
  11220. </a>
  11221. </em>
  11222. </td>
  11223. <td>
  11224. <em>(Optional)</em>
  11225. <p>UserPass authenticates with Vault by passing username/password pair</p>
  11226. </td>
  11227. </tr>
  11228. </tbody>
  11229. </table>
  11230. <h3 id="external-secrets.io/v1.VaultAwsAuth">VaultAwsAuth
  11231. </h3>
  11232. <p>
  11233. <p>VaultAwsAuth tells the controller how to do authentication with aws.
  11234. Only one of secretRef or jwt can be specified.
  11235. if none is specified the controller will try to load credentials from its own service account assuming it is IRSA enabled.</p>
  11236. </p>
  11237. <table>
  11238. <thead>
  11239. <tr>
  11240. <th>Field</th>
  11241. <th>Description</th>
  11242. </tr>
  11243. </thead>
  11244. <tbody>
  11245. <tr>
  11246. <td>
  11247. <code>secretRef</code></br>
  11248. <em>
  11249. <a href="#external-secrets.io/v1.VaultAwsAuthSecretRef">
  11250. VaultAwsAuthSecretRef
  11251. </a>
  11252. </em>
  11253. </td>
  11254. <td>
  11255. <em>(Optional)</em>
  11256. </td>
  11257. </tr>
  11258. <tr>
  11259. <td>
  11260. <code>jwt</code></br>
  11261. <em>
  11262. <a href="#external-secrets.io/v1.VaultAwsJWTAuth">
  11263. VaultAwsJWTAuth
  11264. </a>
  11265. </em>
  11266. </td>
  11267. <td>
  11268. <em>(Optional)</em>
  11269. </td>
  11270. </tr>
  11271. </tbody>
  11272. </table>
  11273. <h3 id="external-secrets.io/v1.VaultAwsAuthSecretRef">VaultAwsAuthSecretRef
  11274. </h3>
  11275. <p>
  11276. (<em>Appears on:</em>
  11277. <a href="#external-secrets.io/v1.VaultAwsAuth">VaultAwsAuth</a>,
  11278. <a href="#external-secrets.io/v1.VaultIamAuth">VaultIamAuth</a>)
  11279. </p>
  11280. <p>
  11281. <p>VaultAWSAuthSecretRef holds secret references for AWS credentials
  11282. both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.</p>
  11283. </p>
  11284. <table>
  11285. <thead>
  11286. <tr>
  11287. <th>Field</th>
  11288. <th>Description</th>
  11289. </tr>
  11290. </thead>
  11291. <tbody>
  11292. <tr>
  11293. <td>
  11294. <code>accessKeyIDSecretRef</code></br>
  11295. <em>
  11296. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11297. External Secrets meta/v1.SecretKeySelector
  11298. </a>
  11299. </em>
  11300. </td>
  11301. <td>
  11302. <em>(Optional)</em>
  11303. <p>The AccessKeyID is used for authentication</p>
  11304. </td>
  11305. </tr>
  11306. <tr>
  11307. <td>
  11308. <code>secretAccessKeySecretRef</code></br>
  11309. <em>
  11310. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11311. External Secrets meta/v1.SecretKeySelector
  11312. </a>
  11313. </em>
  11314. </td>
  11315. <td>
  11316. <em>(Optional)</em>
  11317. <p>The SecretAccessKey is used for authentication</p>
  11318. </td>
  11319. </tr>
  11320. <tr>
  11321. <td>
  11322. <code>sessionTokenSecretRef</code></br>
  11323. <em>
  11324. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11325. External Secrets meta/v1.SecretKeySelector
  11326. </a>
  11327. </em>
  11328. </td>
  11329. <td>
  11330. <em>(Optional)</em>
  11331. <p>The SessionToken used for authentication
  11332. This must be defined if AccessKeyID and SecretAccessKey are temporary credentials
  11333. 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>
  11334. </td>
  11335. </tr>
  11336. </tbody>
  11337. </table>
  11338. <h3 id="external-secrets.io/v1.VaultAwsJWTAuth">VaultAwsJWTAuth
  11339. </h3>
  11340. <p>
  11341. (<em>Appears on:</em>
  11342. <a href="#external-secrets.io/v1.VaultAwsAuth">VaultAwsAuth</a>,
  11343. <a href="#external-secrets.io/v1.VaultIamAuth">VaultIamAuth</a>)
  11344. </p>
  11345. <p>
  11346. <p>VaultAwsJWTAuth Authenticate against AWS using service account tokens.</p>
  11347. </p>
  11348. <table>
  11349. <thead>
  11350. <tr>
  11351. <th>Field</th>
  11352. <th>Description</th>
  11353. </tr>
  11354. </thead>
  11355. <tbody>
  11356. <tr>
  11357. <td>
  11358. <code>serviceAccountRef</code></br>
  11359. <em>
  11360. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  11361. External Secrets meta/v1.ServiceAccountSelector
  11362. </a>
  11363. </em>
  11364. </td>
  11365. <td>
  11366. <em>(Optional)</em>
  11367. </td>
  11368. </tr>
  11369. </tbody>
  11370. </table>
  11371. <h3 id="external-secrets.io/v1.VaultCertAuth">VaultCertAuth
  11372. </h3>
  11373. <p>
  11374. (<em>Appears on:</em>
  11375. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  11376. </p>
  11377. <p>
  11378. <p>VaultCertAuth authenticates with Vault using the JWT/OIDC authentication
  11379. method, with the role name and token stored in a Kubernetes Secret resource.</p>
  11380. </p>
  11381. <table>
  11382. <thead>
  11383. <tr>
  11384. <th>Field</th>
  11385. <th>Description</th>
  11386. </tr>
  11387. </thead>
  11388. <tbody>
  11389. <tr>
  11390. <td>
  11391. <code>clientCert</code></br>
  11392. <em>
  11393. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11394. External Secrets meta/v1.SecretKeySelector
  11395. </a>
  11396. </em>
  11397. </td>
  11398. <td>
  11399. <em>(Optional)</em>
  11400. <p>ClientCert is a certificate to authenticate using the Cert Vault
  11401. authentication method</p>
  11402. </td>
  11403. </tr>
  11404. <tr>
  11405. <td>
  11406. <code>secretRef</code></br>
  11407. <em>
  11408. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11409. External Secrets meta/v1.SecretKeySelector
  11410. </a>
  11411. </em>
  11412. </td>
  11413. <td>
  11414. <em>(Optional)</em>
  11415. <p>SecretRef to a key in a Secret resource containing client private key to
  11416. authenticate with Vault using the Cert authentication method</p>
  11417. </td>
  11418. </tr>
  11419. </tbody>
  11420. </table>
  11421. <h3 id="external-secrets.io/v1.VaultCheckAndSet">VaultCheckAndSet
  11422. </h3>
  11423. <p>
  11424. (<em>Appears on:</em>
  11425. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  11426. </p>
  11427. <p>
  11428. <p>VaultCheckAndSet defines the Check-And-Set (CAS) settings for Vault KV v2 PushSecret operations.</p>
  11429. </p>
  11430. <table>
  11431. <thead>
  11432. <tr>
  11433. <th>Field</th>
  11434. <th>Description</th>
  11435. </tr>
  11436. </thead>
  11437. <tbody>
  11438. <tr>
  11439. <td>
  11440. <code>required</code></br>
  11441. <em>
  11442. bool
  11443. </em>
  11444. </td>
  11445. <td>
  11446. <em>(Optional)</em>
  11447. <p>Required when true, all write operations must include a check-and-set parameter.
  11448. This helps prevent unintentional overwrites of secrets.</p>
  11449. </td>
  11450. </tr>
  11451. </tbody>
  11452. </table>
  11453. <h3 id="external-secrets.io/v1.VaultClientTLS">VaultClientTLS
  11454. </h3>
  11455. <p>
  11456. (<em>Appears on:</em>
  11457. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  11458. </p>
  11459. <p>
  11460. <p>VaultClientTLS is the configuration used for client side related TLS communication,
  11461. when the Vault server requires mutual authentication.</p>
  11462. </p>
  11463. <table>
  11464. <thead>
  11465. <tr>
  11466. <th>Field</th>
  11467. <th>Description</th>
  11468. </tr>
  11469. </thead>
  11470. <tbody>
  11471. <tr>
  11472. <td>
  11473. <code>certSecretRef</code></br>
  11474. <em>
  11475. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11476. External Secrets meta/v1.SecretKeySelector
  11477. </a>
  11478. </em>
  11479. </td>
  11480. <td>
  11481. <em>(Optional)</em>
  11482. <p>CertSecretRef is a certificate added to the transport layer
  11483. when communicating with the Vault server.
  11484. If no key for the Secret is specified, external-secret will default to &lsquo;tls.crt&rsquo;.</p>
  11485. </td>
  11486. </tr>
  11487. <tr>
  11488. <td>
  11489. <code>keySecretRef</code></br>
  11490. <em>
  11491. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11492. External Secrets meta/v1.SecretKeySelector
  11493. </a>
  11494. </em>
  11495. </td>
  11496. <td>
  11497. <em>(Optional)</em>
  11498. <p>KeySecretRef to a key in a Secret resource containing client private key
  11499. added to the transport layer when communicating with the Vault server.
  11500. If no key for the Secret is specified, external-secret will default to &lsquo;tls.key&rsquo;.</p>
  11501. </td>
  11502. </tr>
  11503. </tbody>
  11504. </table>
  11505. <h3 id="external-secrets.io/v1.VaultIamAuth">VaultIamAuth
  11506. </h3>
  11507. <p>
  11508. (<em>Appears on:</em>
  11509. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  11510. </p>
  11511. <p>
  11512. <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>
  11513. <p>When JWTAuth and SecretRef are not specified, the provider will use the controller pod&rsquo;s
  11514. identity to authenticate with AWS. This supports both IRSA and EKS Pod Identity.</p>
  11515. </p>
  11516. <table>
  11517. <thead>
  11518. <tr>
  11519. <th>Field</th>
  11520. <th>Description</th>
  11521. </tr>
  11522. </thead>
  11523. <tbody>
  11524. <tr>
  11525. <td>
  11526. <code>path</code></br>
  11527. <em>
  11528. string
  11529. </em>
  11530. </td>
  11531. <td>
  11532. <em>(Optional)</em>
  11533. <p>Path where the AWS auth method is enabled in Vault, e.g: &ldquo;aws&rdquo;</p>
  11534. </td>
  11535. </tr>
  11536. <tr>
  11537. <td>
  11538. <code>region</code></br>
  11539. <em>
  11540. string
  11541. </em>
  11542. </td>
  11543. <td>
  11544. <em>(Optional)</em>
  11545. <p>AWS region</p>
  11546. </td>
  11547. </tr>
  11548. <tr>
  11549. <td>
  11550. <code>role</code></br>
  11551. <em>
  11552. string
  11553. </em>
  11554. </td>
  11555. <td>
  11556. <em>(Optional)</em>
  11557. <p>This is the AWS role to be assumed before talking to vault</p>
  11558. </td>
  11559. </tr>
  11560. <tr>
  11561. <td>
  11562. <code>vaultRole</code></br>
  11563. <em>
  11564. string
  11565. </em>
  11566. </td>
  11567. <td>
  11568. <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>
  11569. </td>
  11570. </tr>
  11571. <tr>
  11572. <td>
  11573. <code>externalID</code></br>
  11574. <em>
  11575. string
  11576. </em>
  11577. </td>
  11578. <td>
  11579. <p>AWS External ID set on assumed IAM roles</p>
  11580. </td>
  11581. </tr>
  11582. <tr>
  11583. <td>
  11584. <code>vaultAwsIamServerID</code></br>
  11585. <em>
  11586. string
  11587. </em>
  11588. </td>
  11589. <td>
  11590. <em>(Optional)</em>
  11591. <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>
  11592. </td>
  11593. </tr>
  11594. <tr>
  11595. <td>
  11596. <code>secretRef</code></br>
  11597. <em>
  11598. <a href="#external-secrets.io/v1.VaultAwsAuthSecretRef">
  11599. VaultAwsAuthSecretRef
  11600. </a>
  11601. </em>
  11602. </td>
  11603. <td>
  11604. <em>(Optional)</em>
  11605. <p>Specify credentials in a Secret object</p>
  11606. </td>
  11607. </tr>
  11608. <tr>
  11609. <td>
  11610. <code>jwt</code></br>
  11611. <em>
  11612. <a href="#external-secrets.io/v1.VaultAwsJWTAuth">
  11613. VaultAwsJWTAuth
  11614. </a>
  11615. </em>
  11616. </td>
  11617. <td>
  11618. <em>(Optional)</em>
  11619. <p>Specify a service account with IRSA enabled</p>
  11620. </td>
  11621. </tr>
  11622. </tbody>
  11623. </table>
  11624. <h3 id="external-secrets.io/v1.VaultJwtAuth">VaultJwtAuth
  11625. </h3>
  11626. <p>
  11627. (<em>Appears on:</em>
  11628. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  11629. </p>
  11630. <p>
  11631. <p>VaultJwtAuth authenticates with Vault using the JWT/OIDC authentication
  11632. method, with the role name and a token stored in a Kubernetes Secret resource or
  11633. a Kubernetes service account token retrieved via <code>TokenRequest</code>.</p>
  11634. </p>
  11635. <table>
  11636. <thead>
  11637. <tr>
  11638. <th>Field</th>
  11639. <th>Description</th>
  11640. </tr>
  11641. </thead>
  11642. <tbody>
  11643. <tr>
  11644. <td>
  11645. <code>path</code></br>
  11646. <em>
  11647. string
  11648. </em>
  11649. </td>
  11650. <td>
  11651. <p>Path where the JWT authentication backend is mounted
  11652. in Vault, e.g: &ldquo;jwt&rdquo;</p>
  11653. </td>
  11654. </tr>
  11655. <tr>
  11656. <td>
  11657. <code>role</code></br>
  11658. <em>
  11659. string
  11660. </em>
  11661. </td>
  11662. <td>
  11663. <em>(Optional)</em>
  11664. <p>Role is a JWT role to authenticate using the JWT/OIDC Vault
  11665. authentication method</p>
  11666. </td>
  11667. </tr>
  11668. <tr>
  11669. <td>
  11670. <code>secretRef</code></br>
  11671. <em>
  11672. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11673. External Secrets meta/v1.SecretKeySelector
  11674. </a>
  11675. </em>
  11676. </td>
  11677. <td>
  11678. <em>(Optional)</em>
  11679. <p>Optional SecretRef that refers to a key in a Secret resource containing JWT token to
  11680. authenticate with Vault using the JWT/OIDC authentication method.</p>
  11681. </td>
  11682. </tr>
  11683. <tr>
  11684. <td>
  11685. <code>kubernetesServiceAccountToken</code></br>
  11686. <em>
  11687. <a href="#external-secrets.io/v1.VaultKubernetesServiceAccountTokenAuth">
  11688. VaultKubernetesServiceAccountTokenAuth
  11689. </a>
  11690. </em>
  11691. </td>
  11692. <td>
  11693. <em>(Optional)</em>
  11694. <p>Optional ServiceAccountToken specifies the Kubernetes service account for which to request
  11695. a token for with the <code>TokenRequest</code> API.</p>
  11696. </td>
  11697. </tr>
  11698. </tbody>
  11699. </table>
  11700. <h3 id="external-secrets.io/v1.VaultKVStoreVersion">VaultKVStoreVersion
  11701. (<code>string</code> alias)</p></h3>
  11702. <p>
  11703. (<em>Appears on:</em>
  11704. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  11705. </p>
  11706. <p>
  11707. </p>
  11708. <table>
  11709. <thead>
  11710. <tr>
  11711. <th>Value</th>
  11712. <th>Description</th>
  11713. </tr>
  11714. </thead>
  11715. <tbody><tr><td><p>&#34;v1&#34;</p></td>
  11716. <td></td>
  11717. </tr><tr><td><p>&#34;v2&#34;</p></td>
  11718. <td></td>
  11719. </tr></tbody>
  11720. </table>
  11721. <h3 id="external-secrets.io/v1.VaultKubernetesAuth">VaultKubernetesAuth
  11722. </h3>
  11723. <p>
  11724. (<em>Appears on:</em>
  11725. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  11726. </p>
  11727. <p>
  11728. <p>Authenticate against Vault using a Kubernetes ServiceAccount token stored in
  11729. a Secret.</p>
  11730. </p>
  11731. <table>
  11732. <thead>
  11733. <tr>
  11734. <th>Field</th>
  11735. <th>Description</th>
  11736. </tr>
  11737. </thead>
  11738. <tbody>
  11739. <tr>
  11740. <td>
  11741. <code>mountPath</code></br>
  11742. <em>
  11743. string
  11744. </em>
  11745. </td>
  11746. <td>
  11747. <p>Path where the Kubernetes authentication backend is mounted in Vault, e.g:
  11748. &ldquo;kubernetes&rdquo;</p>
  11749. </td>
  11750. </tr>
  11751. <tr>
  11752. <td>
  11753. <code>serviceAccountRef</code></br>
  11754. <em>
  11755. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  11756. External Secrets meta/v1.ServiceAccountSelector
  11757. </a>
  11758. </em>
  11759. </td>
  11760. <td>
  11761. <em>(Optional)</em>
  11762. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  11763. If the service account is specified, the service account secret token JWT will be used
  11764. for authenticating with Vault. If the service account selector is not supplied,
  11765. the secretRef will be used instead.</p>
  11766. </td>
  11767. </tr>
  11768. <tr>
  11769. <td>
  11770. <code>secretRef</code></br>
  11771. <em>
  11772. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11773. External Secrets meta/v1.SecretKeySelector
  11774. </a>
  11775. </em>
  11776. </td>
  11777. <td>
  11778. <em>(Optional)</em>
  11779. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  11780. for authenticating with Vault. If a name is specified without a key,
  11781. <code>token</code> is the default. If one is not specified, the one bound to
  11782. the controller will be used.</p>
  11783. </td>
  11784. </tr>
  11785. <tr>
  11786. <td>
  11787. <code>role</code></br>
  11788. <em>
  11789. string
  11790. </em>
  11791. </td>
  11792. <td>
  11793. <p>A required field containing the Vault Role to assume. A Role binds a
  11794. Kubernetes ServiceAccount with a set of Vault policies.</p>
  11795. </td>
  11796. </tr>
  11797. </tbody>
  11798. </table>
  11799. <h3 id="external-secrets.io/v1.VaultKubernetesServiceAccountTokenAuth">VaultKubernetesServiceAccountTokenAuth
  11800. </h3>
  11801. <p>
  11802. (<em>Appears on:</em>
  11803. <a href="#external-secrets.io/v1.VaultJwtAuth">VaultJwtAuth</a>)
  11804. </p>
  11805. <p>
  11806. <p>VaultKubernetesServiceAccountTokenAuth authenticates with Vault using a temporary
  11807. Kubernetes service account token retrieved by the <code>TokenRequest</code> API.</p>
  11808. </p>
  11809. <table>
  11810. <thead>
  11811. <tr>
  11812. <th>Field</th>
  11813. <th>Description</th>
  11814. </tr>
  11815. </thead>
  11816. <tbody>
  11817. <tr>
  11818. <td>
  11819. <code>serviceAccountRef</code></br>
  11820. <em>
  11821. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  11822. External Secrets meta/v1.ServiceAccountSelector
  11823. </a>
  11824. </em>
  11825. </td>
  11826. <td>
  11827. <p>Service account field containing the name of a kubernetes ServiceAccount.</p>
  11828. </td>
  11829. </tr>
  11830. <tr>
  11831. <td>
  11832. <code>audiences</code></br>
  11833. <em>
  11834. []string
  11835. </em>
  11836. </td>
  11837. <td>
  11838. <em>(Optional)</em>
  11839. <p>Optional audiences field that will be used to request a temporary Kubernetes service
  11840. account token for the service account referenced by <code>serviceAccountRef</code>.
  11841. Defaults to a single audience <code>vault</code> it not specified.
  11842. Deprecated: use serviceAccountRef.Audiences instead</p>
  11843. </td>
  11844. </tr>
  11845. <tr>
  11846. <td>
  11847. <code>expirationSeconds</code></br>
  11848. <em>
  11849. int64
  11850. </em>
  11851. </td>
  11852. <td>
  11853. <em>(Optional)</em>
  11854. <p>Optional expiration time in seconds that will be used to request a temporary
  11855. Kubernetes service account token for the service account referenced by
  11856. <code>serviceAccountRef</code>.
  11857. Deprecated: this will be removed in the future.
  11858. Defaults to 10 minutes.</p>
  11859. </td>
  11860. </tr>
  11861. </tbody>
  11862. </table>
  11863. <h3 id="external-secrets.io/v1.VaultLdapAuth">VaultLdapAuth
  11864. </h3>
  11865. <p>
  11866. (<em>Appears on:</em>
  11867. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  11868. </p>
  11869. <p>
  11870. <p>VaultLdapAuth authenticates with Vault using the LDAP authentication method,
  11871. with the username and password stored in a Kubernetes Secret resource.</p>
  11872. </p>
  11873. <table>
  11874. <thead>
  11875. <tr>
  11876. <th>Field</th>
  11877. <th>Description</th>
  11878. </tr>
  11879. </thead>
  11880. <tbody>
  11881. <tr>
  11882. <td>
  11883. <code>path</code></br>
  11884. <em>
  11885. string
  11886. </em>
  11887. </td>
  11888. <td>
  11889. <p>Path where the LDAP authentication backend is mounted
  11890. in Vault, e.g: &ldquo;ldap&rdquo;</p>
  11891. </td>
  11892. </tr>
  11893. <tr>
  11894. <td>
  11895. <code>username</code></br>
  11896. <em>
  11897. string
  11898. </em>
  11899. </td>
  11900. <td>
  11901. <p>Username is an LDAP username used to authenticate using the LDAP Vault
  11902. authentication method</p>
  11903. </td>
  11904. </tr>
  11905. <tr>
  11906. <td>
  11907. <code>secretRef</code></br>
  11908. <em>
  11909. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11910. External Secrets meta/v1.SecretKeySelector
  11911. </a>
  11912. </em>
  11913. </td>
  11914. <td>
  11915. <em>(Optional)</em>
  11916. <p>SecretRef to a key in a Secret resource containing password for the LDAP
  11917. user used to authenticate with Vault using the LDAP authentication
  11918. method</p>
  11919. </td>
  11920. </tr>
  11921. </tbody>
  11922. </table>
  11923. <h3 id="external-secrets.io/v1.VaultProvider">VaultProvider
  11924. </h3>
  11925. <p>
  11926. (<em>Appears on:</em>
  11927. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  11928. </p>
  11929. <p>
  11930. <p>Configures an store to sync secrets using a HashiCorp Vault
  11931. KV backend.</p>
  11932. </p>
  11933. <table>
  11934. <thead>
  11935. <tr>
  11936. <th>Field</th>
  11937. <th>Description</th>
  11938. </tr>
  11939. </thead>
  11940. <tbody>
  11941. <tr>
  11942. <td>
  11943. <code>auth</code></br>
  11944. <em>
  11945. <a href="#external-secrets.io/v1.VaultAuth">
  11946. VaultAuth
  11947. </a>
  11948. </em>
  11949. </td>
  11950. <td>
  11951. <p>Auth configures how secret-manager authenticates with the Vault server.</p>
  11952. </td>
  11953. </tr>
  11954. <tr>
  11955. <td>
  11956. <code>server</code></br>
  11957. <em>
  11958. string
  11959. </em>
  11960. </td>
  11961. <td>
  11962. <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>
  11963. </td>
  11964. </tr>
  11965. <tr>
  11966. <td>
  11967. <code>path</code></br>
  11968. <em>
  11969. string
  11970. </em>
  11971. </td>
  11972. <td>
  11973. <em>(Optional)</em>
  11974. <p>Path is the mount path of the Vault KV backend endpoint, e.g:
  11975. &ldquo;secret&rdquo;. The v2 KV secret engine version specific &ldquo;/data&rdquo; path suffix
  11976. for fetching secrets from Vault is optional and will be appended
  11977. if not present in specified path.</p>
  11978. </td>
  11979. </tr>
  11980. <tr>
  11981. <td>
  11982. <code>version</code></br>
  11983. <em>
  11984. <a href="#external-secrets.io/v1.VaultKVStoreVersion">
  11985. VaultKVStoreVersion
  11986. </a>
  11987. </em>
  11988. </td>
  11989. <td>
  11990. <p>Version is the Vault KV secret engine version. This can be either &ldquo;v1&rdquo; or
  11991. &ldquo;v2&rdquo;. Version defaults to &ldquo;v2&rdquo;.</p>
  11992. </td>
  11993. </tr>
  11994. <tr>
  11995. <td>
  11996. <code>namespace</code></br>
  11997. <em>
  11998. string
  11999. </em>
  12000. </td>
  12001. <td>
  12002. <em>(Optional)</em>
  12003. <p>Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows
  12004. Vault environments to support Secure Multi-tenancy. e.g: &ldquo;ns1&rdquo;.
  12005. 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>
  12006. </td>
  12007. </tr>
  12008. <tr>
  12009. <td>
  12010. <code>caBundle</code></br>
  12011. <em>
  12012. []byte
  12013. </em>
  12014. </td>
  12015. <td>
  12016. <em>(Optional)</em>
  12017. <p>PEM encoded CA bundle used to validate Vault server certificate. Only used
  12018. if the Server URL is using HTTPS protocol. This parameter is ignored for
  12019. plain HTTP protocol connection. If not set the system root certificates
  12020. are used to validate the TLS connection.</p>
  12021. </td>
  12022. </tr>
  12023. <tr>
  12024. <td>
  12025. <code>tls</code></br>
  12026. <em>
  12027. <a href="#external-secrets.io/v1.VaultClientTLS">
  12028. VaultClientTLS
  12029. </a>
  12030. </em>
  12031. </td>
  12032. <td>
  12033. <em>(Optional)</em>
  12034. <p>The configuration used for client side related TLS communication, when the Vault server
  12035. requires mutual authentication. Only used if the Server URL is using HTTPS protocol.
  12036. This parameter is ignored for plain HTTP protocol connection.
  12037. It&rsquo;s worth noting this configuration is different from the &ldquo;TLS certificates auth method&rdquo;,
  12038. which is available under the <code>auth.cert</code> section.</p>
  12039. </td>
  12040. </tr>
  12041. <tr>
  12042. <td>
  12043. <code>caProvider</code></br>
  12044. <em>
  12045. <a href="#external-secrets.io/v1.CAProvider">
  12046. CAProvider
  12047. </a>
  12048. </em>
  12049. </td>
  12050. <td>
  12051. <em>(Optional)</em>
  12052. <p>The provider for the CA bundle to use to validate Vault server certificate.</p>
  12053. </td>
  12054. </tr>
  12055. <tr>
  12056. <td>
  12057. <code>readYourWrites</code></br>
  12058. <em>
  12059. bool
  12060. </em>
  12061. </td>
  12062. <td>
  12063. <em>(Optional)</em>
  12064. <p>ReadYourWrites ensures isolated read-after-write semantics by
  12065. providing discovered cluster replication states in each request.
  12066. More information about eventual consistency in Vault can be found here
  12067. <a href="https://www.vaultproject.io/docs/enterprise/consistency">https://www.vaultproject.io/docs/enterprise/consistency</a></p>
  12068. </td>
  12069. </tr>
  12070. <tr>
  12071. <td>
  12072. <code>forwardInconsistent</code></br>
  12073. <em>
  12074. bool
  12075. </em>
  12076. </td>
  12077. <td>
  12078. <em>(Optional)</em>
  12079. <p>ForwardInconsistent tells Vault to forward read-after-write requests to the Vault
  12080. leader instead of simply retrying within a loop. This can increase performance if
  12081. the option is enabled serverside.
  12082. <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>
  12083. </td>
  12084. </tr>
  12085. <tr>
  12086. <td>
  12087. <code>headers</code></br>
  12088. <em>
  12089. map[string]string
  12090. </em>
  12091. </td>
  12092. <td>
  12093. <em>(Optional)</em>
  12094. <p>Headers to be added in Vault request</p>
  12095. </td>
  12096. </tr>
  12097. <tr>
  12098. <td>
  12099. <code>checkAndSet</code></br>
  12100. <em>
  12101. <a href="#external-secrets.io/v1.VaultCheckAndSet">
  12102. VaultCheckAndSet
  12103. </a>
  12104. </em>
  12105. </td>
  12106. <td>
  12107. <em>(Optional)</em>
  12108. <p>CheckAndSet defines the Check-And-Set (CAS) settings for PushSecret operations.
  12109. Only applies to Vault KV v2 stores. When enabled, write operations must include
  12110. the current version of the secret to prevent unintentional overwrites.</p>
  12111. </td>
  12112. </tr>
  12113. </tbody>
  12114. </table>
  12115. <h3 id="external-secrets.io/v1.VaultUserPassAuth">VaultUserPassAuth
  12116. </h3>
  12117. <p>
  12118. (<em>Appears on:</em>
  12119. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  12120. </p>
  12121. <p>
  12122. <p>VaultUserPassAuth authenticates with Vault using UserPass authentication method,
  12123. with the username and password stored in a Kubernetes Secret resource.</p>
  12124. </p>
  12125. <table>
  12126. <thead>
  12127. <tr>
  12128. <th>Field</th>
  12129. <th>Description</th>
  12130. </tr>
  12131. </thead>
  12132. <tbody>
  12133. <tr>
  12134. <td>
  12135. <code>path</code></br>
  12136. <em>
  12137. string
  12138. </em>
  12139. </td>
  12140. <td>
  12141. <p>Path where the UserPassword authentication backend is mounted
  12142. in Vault, e.g: &ldquo;userpass&rdquo;</p>
  12143. </td>
  12144. </tr>
  12145. <tr>
  12146. <td>
  12147. <code>username</code></br>
  12148. <em>
  12149. string
  12150. </em>
  12151. </td>
  12152. <td>
  12153. <p>Username is a username used to authenticate using the UserPass Vault
  12154. authentication method</p>
  12155. </td>
  12156. </tr>
  12157. <tr>
  12158. <td>
  12159. <code>secretRef</code></br>
  12160. <em>
  12161. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  12162. External Secrets meta/v1.SecretKeySelector
  12163. </a>
  12164. </em>
  12165. </td>
  12166. <td>
  12167. <em>(Optional)</em>
  12168. <p>SecretRef to a key in a Secret resource containing password for the
  12169. user used to authenticate with Vault using the UserPass authentication
  12170. method</p>
  12171. </td>
  12172. </tr>
  12173. </tbody>
  12174. </table>
  12175. <h3 id="external-secrets.io/v1.WebhookCAProvider">WebhookCAProvider
  12176. </h3>
  12177. <p>
  12178. (<em>Appears on:</em>
  12179. <a href="#external-secrets.io/v1.WebhookProvider">WebhookProvider</a>)
  12180. </p>
  12181. <p>
  12182. <p>Defines a location to fetch the cert for the webhook provider from.</p>
  12183. </p>
  12184. <table>
  12185. <thead>
  12186. <tr>
  12187. <th>Field</th>
  12188. <th>Description</th>
  12189. </tr>
  12190. </thead>
  12191. <tbody>
  12192. <tr>
  12193. <td>
  12194. <code>type</code></br>
  12195. <em>
  12196. <a href="#external-secrets.io/v1.WebhookCAProviderType">
  12197. WebhookCAProviderType
  12198. </a>
  12199. </em>
  12200. </td>
  12201. <td>
  12202. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  12203. </td>
  12204. </tr>
  12205. <tr>
  12206. <td>
  12207. <code>name</code></br>
  12208. <em>
  12209. string
  12210. </em>
  12211. </td>
  12212. <td>
  12213. <p>The name of the object located at the provider type.</p>
  12214. </td>
  12215. </tr>
  12216. <tr>
  12217. <td>
  12218. <code>key</code></br>
  12219. <em>
  12220. string
  12221. </em>
  12222. </td>
  12223. <td>
  12224. <p>The key where the CA certificate can be found in the Secret or ConfigMap.</p>
  12225. </td>
  12226. </tr>
  12227. <tr>
  12228. <td>
  12229. <code>namespace</code></br>
  12230. <em>
  12231. string
  12232. </em>
  12233. </td>
  12234. <td>
  12235. <em>(Optional)</em>
  12236. <p>The namespace the Provider type is in.</p>
  12237. </td>
  12238. </tr>
  12239. </tbody>
  12240. </table>
  12241. <h3 id="external-secrets.io/v1.WebhookCAProviderType">WebhookCAProviderType
  12242. (<code>string</code> alias)</p></h3>
  12243. <p>
  12244. (<em>Appears on:</em>
  12245. <a href="#external-secrets.io/v1.WebhookCAProvider">WebhookCAProvider</a>)
  12246. </p>
  12247. <p>
  12248. </p>
  12249. <table>
  12250. <thead>
  12251. <tr>
  12252. <th>Value</th>
  12253. <th>Description</th>
  12254. </tr>
  12255. </thead>
  12256. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  12257. <td></td>
  12258. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  12259. <td></td>
  12260. </tr></tbody>
  12261. </table>
  12262. <h3 id="external-secrets.io/v1.WebhookProvider">WebhookProvider
  12263. </h3>
  12264. <p>
  12265. (<em>Appears on:</em>
  12266. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  12267. </p>
  12268. <p>
  12269. <p>WebHookProvider Configures an store to sync secrets from simple web apis.</p>
  12270. </p>
  12271. <table>
  12272. <thead>
  12273. <tr>
  12274. <th>Field</th>
  12275. <th>Description</th>
  12276. </tr>
  12277. </thead>
  12278. <tbody>
  12279. <tr>
  12280. <td>
  12281. <code>method</code></br>
  12282. <em>
  12283. string
  12284. </em>
  12285. </td>
  12286. <td>
  12287. <p>Webhook Method</p>
  12288. </td>
  12289. </tr>
  12290. <tr>
  12291. <td>
  12292. <code>url</code></br>
  12293. <em>
  12294. string
  12295. </em>
  12296. </td>
  12297. <td>
  12298. <p>Webhook url to call</p>
  12299. </td>
  12300. </tr>
  12301. <tr>
  12302. <td>
  12303. <code>headers</code></br>
  12304. <em>
  12305. map[string]string
  12306. </em>
  12307. </td>
  12308. <td>
  12309. <em>(Optional)</em>
  12310. <p>Headers</p>
  12311. </td>
  12312. </tr>
  12313. <tr>
  12314. <td>
  12315. <code>auth</code></br>
  12316. <em>
  12317. <a href="#external-secrets.io/v1.AuthorizationProtocol">
  12318. AuthorizationProtocol
  12319. </a>
  12320. </em>
  12321. </td>
  12322. <td>
  12323. <em>(Optional)</em>
  12324. <p>Auth specifies a authorization protocol. Only one protocol may be set.</p>
  12325. </td>
  12326. </tr>
  12327. <tr>
  12328. <td>
  12329. <code>body</code></br>
  12330. <em>
  12331. string
  12332. </em>
  12333. </td>
  12334. <td>
  12335. <em>(Optional)</em>
  12336. <p>Body</p>
  12337. </td>
  12338. </tr>
  12339. <tr>
  12340. <td>
  12341. <code>timeout</code></br>
  12342. <em>
  12343. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  12344. Kubernetes meta/v1.Duration
  12345. </a>
  12346. </em>
  12347. </td>
  12348. <td>
  12349. <em>(Optional)</em>
  12350. <p>Timeout</p>
  12351. </td>
  12352. </tr>
  12353. <tr>
  12354. <td>
  12355. <code>result</code></br>
  12356. <em>
  12357. <a href="#external-secrets.io/v1.WebhookResult">
  12358. WebhookResult
  12359. </a>
  12360. </em>
  12361. </td>
  12362. <td>
  12363. <p>Result formatting</p>
  12364. </td>
  12365. </tr>
  12366. <tr>
  12367. <td>
  12368. <code>secrets</code></br>
  12369. <em>
  12370. <a href="#external-secrets.io/v1.WebhookSecret">
  12371. []WebhookSecret
  12372. </a>
  12373. </em>
  12374. </td>
  12375. <td>
  12376. <em>(Optional)</em>
  12377. <p>Secrets to fill in templates
  12378. These secrets will be passed to the templating function as key value pairs under the given name</p>
  12379. </td>
  12380. </tr>
  12381. <tr>
  12382. <td>
  12383. <code>caBundle</code></br>
  12384. <em>
  12385. []byte
  12386. </em>
  12387. </td>
  12388. <td>
  12389. <em>(Optional)</em>
  12390. <p>PEM encoded CA bundle used to validate webhook server certificate. Only used
  12391. if the Server URL is using HTTPS protocol. This parameter is ignored for
  12392. plain HTTP protocol connection. If not set the system root certificates
  12393. are used to validate the TLS connection.</p>
  12394. </td>
  12395. </tr>
  12396. <tr>
  12397. <td>
  12398. <code>caProvider</code></br>
  12399. <em>
  12400. <a href="#external-secrets.io/v1.WebhookCAProvider">
  12401. WebhookCAProvider
  12402. </a>
  12403. </em>
  12404. </td>
  12405. <td>
  12406. <em>(Optional)</em>
  12407. <p>The provider for the CA bundle to use to validate webhook server certificate.</p>
  12408. </td>
  12409. </tr>
  12410. </tbody>
  12411. </table>
  12412. <h3 id="external-secrets.io/v1.WebhookResult">WebhookResult
  12413. </h3>
  12414. <p>
  12415. (<em>Appears on:</em>
  12416. <a href="#external-secrets.io/v1.WebhookProvider">WebhookProvider</a>)
  12417. </p>
  12418. <p>
  12419. </p>
  12420. <table>
  12421. <thead>
  12422. <tr>
  12423. <th>Field</th>
  12424. <th>Description</th>
  12425. </tr>
  12426. </thead>
  12427. <tbody>
  12428. <tr>
  12429. <td>
  12430. <code>jsonPath</code></br>
  12431. <em>
  12432. string
  12433. </em>
  12434. </td>
  12435. <td>
  12436. <em>(Optional)</em>
  12437. <p>Json path of return value</p>
  12438. </td>
  12439. </tr>
  12440. </tbody>
  12441. </table>
  12442. <h3 id="external-secrets.io/v1.WebhookSecret">WebhookSecret
  12443. </h3>
  12444. <p>
  12445. (<em>Appears on:</em>
  12446. <a href="#external-secrets.io/v1.WebhookProvider">WebhookProvider</a>)
  12447. </p>
  12448. <p>
  12449. </p>
  12450. <table>
  12451. <thead>
  12452. <tr>
  12453. <th>Field</th>
  12454. <th>Description</th>
  12455. </tr>
  12456. </thead>
  12457. <tbody>
  12458. <tr>
  12459. <td>
  12460. <code>name</code></br>
  12461. <em>
  12462. string
  12463. </em>
  12464. </td>
  12465. <td>
  12466. <p>Name of this secret in templates</p>
  12467. </td>
  12468. </tr>
  12469. <tr>
  12470. <td>
  12471. <code>secretRef</code></br>
  12472. <em>
  12473. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  12474. External Secrets meta/v1.SecretKeySelector
  12475. </a>
  12476. </em>
  12477. </td>
  12478. <td>
  12479. <p>Secret ref to fill in credentials</p>
  12480. </td>
  12481. </tr>
  12482. </tbody>
  12483. </table>
  12484. <h3 id="external-secrets.io/v1.YandexAuth">YandexAuth
  12485. </h3>
  12486. <p>
  12487. (<em>Appears on:</em>
  12488. <a href="#external-secrets.io/v1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>,
  12489. <a href="#external-secrets.io/v1.YandexLockboxProvider">YandexLockboxProvider</a>)
  12490. </p>
  12491. <p>
  12492. </p>
  12493. <table>
  12494. <thead>
  12495. <tr>
  12496. <th>Field</th>
  12497. <th>Description</th>
  12498. </tr>
  12499. </thead>
  12500. <tbody>
  12501. <tr>
  12502. <td>
  12503. <code>authorizedKeySecretRef</code></br>
  12504. <em>
  12505. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  12506. External Secrets meta/v1.SecretKeySelector
  12507. </a>
  12508. </em>
  12509. </td>
  12510. <td>
  12511. <em>(Optional)</em>
  12512. <p>The authorized key used for authentication</p>
  12513. </td>
  12514. </tr>
  12515. </tbody>
  12516. </table>
  12517. <h3 id="external-secrets.io/v1.YandexCAProvider">YandexCAProvider
  12518. </h3>
  12519. <p>
  12520. (<em>Appears on:</em>
  12521. <a href="#external-secrets.io/v1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>,
  12522. <a href="#external-secrets.io/v1.YandexLockboxProvider">YandexLockboxProvider</a>)
  12523. </p>
  12524. <p>
  12525. </p>
  12526. <table>
  12527. <thead>
  12528. <tr>
  12529. <th>Field</th>
  12530. <th>Description</th>
  12531. </tr>
  12532. </thead>
  12533. <tbody>
  12534. <tr>
  12535. <td>
  12536. <code>certSecretRef</code></br>
  12537. <em>
  12538. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  12539. External Secrets meta/v1.SecretKeySelector
  12540. </a>
  12541. </em>
  12542. </td>
  12543. <td>
  12544. </td>
  12545. </tr>
  12546. </tbody>
  12547. </table>
  12548. <h3 id="external-secrets.io/v1.YandexCertificateManagerProvider">YandexCertificateManagerProvider
  12549. </h3>
  12550. <p>
  12551. (<em>Appears on:</em>
  12552. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  12553. </p>
  12554. <p>
  12555. <p>YandexCertificateManagerProvider Configures a store to sync secrets using the Yandex Certificate Manager provider.</p>
  12556. </p>
  12557. <table>
  12558. <thead>
  12559. <tr>
  12560. <th>Field</th>
  12561. <th>Description</th>
  12562. </tr>
  12563. </thead>
  12564. <tbody>
  12565. <tr>
  12566. <td>
  12567. <code>apiEndpoint</code></br>
  12568. <em>
  12569. string
  12570. </em>
  12571. </td>
  12572. <td>
  12573. <em>(Optional)</em>
  12574. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  12575. </td>
  12576. </tr>
  12577. <tr>
  12578. <td>
  12579. <code>auth</code></br>
  12580. <em>
  12581. <a href="#external-secrets.io/v1.YandexAuth">
  12582. YandexAuth
  12583. </a>
  12584. </em>
  12585. </td>
  12586. <td>
  12587. <p>Auth defines the information necessary to authenticate against Yandex.Cloud</p>
  12588. </td>
  12589. </tr>
  12590. <tr>
  12591. <td>
  12592. <code>caProvider</code></br>
  12593. <em>
  12594. <a href="#external-secrets.io/v1.YandexCAProvider">
  12595. YandexCAProvider
  12596. </a>
  12597. </em>
  12598. </td>
  12599. <td>
  12600. <em>(Optional)</em>
  12601. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  12602. </td>
  12603. </tr>
  12604. <tr>
  12605. <td>
  12606. <code>fetching</code></br>
  12607. <em>
  12608. <a href="#external-secrets.io/v1.FetchingPolicy">
  12609. FetchingPolicy
  12610. </a>
  12611. </em>
  12612. </td>
  12613. <td>
  12614. <em>(Optional)</em>
  12615. <p>FetchingPolicy configures the provider to interpret the <code>data.secretKey.remoteRef.key</code> field in ExternalSecret as certificate ID or certificate name</p>
  12616. </td>
  12617. </tr>
  12618. </tbody>
  12619. </table>
  12620. <h3 id="external-secrets.io/v1.YandexLockboxProvider">YandexLockboxProvider
  12621. </h3>
  12622. <p>
  12623. (<em>Appears on:</em>
  12624. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  12625. </p>
  12626. <p>
  12627. <p>YandexLockboxProvider Configures a store to sync secrets using the Yandex Lockbox provider.</p>
  12628. </p>
  12629. <table>
  12630. <thead>
  12631. <tr>
  12632. <th>Field</th>
  12633. <th>Description</th>
  12634. </tr>
  12635. </thead>
  12636. <tbody>
  12637. <tr>
  12638. <td>
  12639. <code>apiEndpoint</code></br>
  12640. <em>
  12641. string
  12642. </em>
  12643. </td>
  12644. <td>
  12645. <em>(Optional)</em>
  12646. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  12647. </td>
  12648. </tr>
  12649. <tr>
  12650. <td>
  12651. <code>auth</code></br>
  12652. <em>
  12653. <a href="#external-secrets.io/v1.YandexAuth">
  12654. YandexAuth
  12655. </a>
  12656. </em>
  12657. </td>
  12658. <td>
  12659. <p>Auth defines the information necessary to authenticate against Yandex.Cloud</p>
  12660. </td>
  12661. </tr>
  12662. <tr>
  12663. <td>
  12664. <code>caProvider</code></br>
  12665. <em>
  12666. <a href="#external-secrets.io/v1.YandexCAProvider">
  12667. YandexCAProvider
  12668. </a>
  12669. </em>
  12670. </td>
  12671. <td>
  12672. <em>(Optional)</em>
  12673. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  12674. </td>
  12675. </tr>
  12676. <tr>
  12677. <td>
  12678. <code>fetching</code></br>
  12679. <em>
  12680. <a href="#external-secrets.io/v1.FetchingPolicy">
  12681. FetchingPolicy
  12682. </a>
  12683. </em>
  12684. </td>
  12685. <td>
  12686. <em>(Optional)</em>
  12687. <p>FetchingPolicy configures the provider to interpret the <code>data.secretKey.remoteRef.key</code> field in ExternalSecret as secret ID or secret name</p>
  12688. </td>
  12689. </tr>
  12690. </tbody>
  12691. </table>
  12692. <hr/>
  12693. <p><em>
  12694. Generated with <code>gen-crd-api-reference-docs</code>.
  12695. </em></p>
  12696. </article>
  12697. </div>
  12698. <script>var target=document.getElementById(location.hash.slice(1));target&&target.name&&(target.checked=target.name.startsWith("__tabbed_"))</script>
  12699. </div>
  12700. </main>
  12701. <img referrerpolicy="no-referrer-when-downgrade" src="https://static.scarf.sh/a.png?x-pxid=6658a9eb-067d-49f1-94f2-b8b00f21451e" alt=""/>
  12702. <footer class="md-footer">
  12703. <div class="md-footer-meta md-typeset">
  12704. <div class="md-footer-meta__inner md-grid">
  12705. <div class="md-copyright">
  12706. <div class="md-copyright__highlight">
  12707. &copy; 2025 The external-secrets Authors.<br/>
  12708. &copy; 2025 The Linux Foundation. All rights reserved.<br/><br/>
  12709. The Linux Foundation has registered trademarks and uses trademarks.<br/>
  12710. For a list of trademarks of The Linux Foundation, please see our <a href="https://www.linuxfoundation.org/trademark-usage/">Trademark Usage page</a>.
  12711. </div>
  12712. Made with
  12713. <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
  12714. Material for MkDocs
  12715. </a>
  12716. </div>
  12717. </div>
  12718. </div>
  12719. </footer>
  12720. </div>
  12721. <div class="md-dialog" data-md-component="dialog">
  12722. <div class="md-dialog__inner md-typeset"></div>
  12723. </div>
  12724. <script id="__config" type="application/json">{"base": "../..", "features": ["navigation.tabs", "navigation.indexes", "navigation.expand"], "search": "../../assets/javascripts/workers/search.973d3a69.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>
  12725. <script src="../../assets/javascripts/bundle.92b07e13.min.js"></script>
  12726. </body>
  12727. </html>