index.html 273 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669136701367113672136731367413675136761367713678136791368013681136821368313684136851368613687136881368913690136911369213693136941369513696136971369813699137001370113702137031370413705137061370713708137091371013711137121371313714137151371613717137181371913720137211372213723137241372513726137271372813729137301373113732137331373413735137361373713738137391374013741137421374313744137451374613747137481374913750137511375213753137541375513756137571375813759137601376113762137631376413765137661376713768137691377013771137721377313774137751377613777137781377913780137811378213783137841378513786137871378813789137901379113792137931379413795137961379713798137991380013801138021380313804138051380613807138081380913810138111381213813138141381513816138171381813819138201382113822138231382413825138261382713828138291383013831138321383313834138351383613837138381383913840138411384213843138441384513846138471384813849138501385113852138531385413855138561385713858138591386013861138621386313864138651386613867138681386913870138711387213873138741387513876138771387813879138801388113882138831388413885138861388713888138891389013891138921389313894138951389613897138981389913900139011390213903139041390513906139071390813909139101391113912139131391413915139161391713918139191392013921139221392313924139251392613927139281392913930139311393213933139341393513936139371393813939139401394113942139431394413945139461394713948139491395013951139521395313954139551395613957139581395913960139611396213963139641396513966139671396813969139701397113972139731397413975139761397713978139791398013981139821398313984139851398613987139881398913990139911399213993139941399513996139971399813999140001400114002140031400414005140061400714008140091401014011140121401314014140151401614017140181401914020140211402214023140241402514026140271402814029140301403114032140331403414035140361403714038140391404014041140421404314044140451404614047140481404914050140511405214053140541405514056140571405814059140601406114062140631406414065140661406714068140691407014071140721407314074140751407614077140781407914080140811408214083140841408514086140871408814089140901409114092140931409414095140961409714098140991410014101141021410314104141051410614107141081410914110141111411214113141141411514116141171411814119141201412114122141231412414125141261412714128141291413014131141321413314134141351413614137141381413914140141411414214143141441414514146141471414814149141501415114152141531415414155141561415714158141591416014161141621416314164141651416614167141681416914170141711417214173141741417514176141771417814179141801418114182141831418414185141861418714188141891419014191141921419314194141951419614197141981419914200142011420214203142041420514206142071420814209142101421114212142131421414215142161421714218142191422014221142221422314224142251422614227142281422914230142311423214233142341423514236142371423814239142401424114242142431424414245142461424714248142491425014251142521425314254142551425614257142581425914260142611426214263142641426514266142671426814269142701427114272142731427414275142761427714278142791428014281142821428314284142851428614287142881428914290142911429214293142941429514296142971429814299143001430114302143031430414305143061430714308143091431014311143121431314314143151431614317143181431914320143211432214323143241432514326143271432814329143301433114332143331433414335143361433714338143391434014341143421434314344143451434614347143481434914350143511435214353143541435514356143571435814359143601436114362143631436414365143661436714368143691437014371143721437314374143751437614377143781437914380143811438214383143841438514386143871438814389143901439114392143931439414395143961439714398143991440014401144021440314404144051440614407144081440914410144111441214413144141441514416144171441814419144201442114422144231442414425144261442714428144291443014431144321443314434144351443614437144381443914440144411444214443144441444514446144471444814449144501445114452144531445414455144561445714458144591446014461144621446314464144651446614467144681446914470144711447214473144741447514476144771447814479144801448114482144831448414485144861448714488144891449014491144921449314494144951449614497144981449914500145011450214503145041450514506145071450814509145101451114512145131451414515145161451714518145191452014521145221452314524145251452614527145281452914530145311453214533145341453514536145371453814539145401454114542145431454414545145461454714548145491455014551145521455314554145551455614557145581455914560145611456214563145641456514566145671456814569145701457114572145731457414575145761457714578145791458014581145821458314584145851458614587145881458914590145911459214593145941459514596145971459814599146001460114602146031460414605146061460714608146091461014611146121461314614146151461614617146181461914620146211462214623146241462514626146271462814629146301463114632146331463414635146361463714638146391464014641146421464314644146451464614647146481464914650146511465214653146541465514656146571465814659146601466114662146631466414665146661466714668146691467014671146721467314674146751467614677146781467914680146811468214683146841468514686146871468814689146901469114692146931469414695146961469714698146991470014701147021470314704147051470614707147081470914710147111471214713147141471514716147171471814719147201472114722147231472414725147261472714728147291473014731147321473314734147351473614737147381473914740147411474214743147441474514746147471474814749147501475114752147531475414755147561475714758147591476014761147621476314764147651476614767147681476914770147711477214773147741477514776147771477814779147801478114782147831478414785147861478714788147891479014791147921479314794147951479614797147981479914800148011480214803148041480514806148071480814809148101481114812148131481414815148161481714818148191482014821148221482314824148251482614827148281482914830148311483214833148341483514836148371483814839148401484114842148431484414845148461484714848148491485014851148521485314854148551485614857148581485914860148611486214863148641486514866148671486814869148701487114872148731487414875148761487714878148791488014881148821488314884148851488614887148881488914890148911489214893148941489514896148971489814899149001490114902149031490414905149061490714908149091491014911149121491314914149151491614917149181491914920149211492214923149241492514926149271492814929149301493114932149331493414935149361493714938149391494014941149421494314944149451494614947149481494914950149511495214953149541495514956149571495814959149601496114962149631496414965149661496714968149691497014971149721497314974149751497614977149781497914980149811498214983149841498514986149871498814989149901499114992149931499414995149961499714998149991500015001150021500315004150051500615007150081500915010150111501215013150141501515016150171501815019150201502115022150231502415025150261502715028150291503015031150321503315034150351503615037150381503915040150411504215043150441504515046150471504815049150501505115052150531505415055150561505715058150591506015061150621506315064150651506615067150681506915070150711507215073150741507515076150771507815079150801508115082150831508415085150861508715088150891509015091150921509315094150951509615097150981509915100151011510215103151041510515106151071510815109151101511115112151131511415115151161511715118151191512015121151221512315124151251512615127151281512915130151311513215133151341513515136151371513815139151401514115142151431514415145151461514715148151491515015151151521515315154151551515615157151581515915160151611516215163151641516515166151671516815169151701517115172151731517415175151761517715178151791518015181151821518315184151851518615187151881518915190151911519215193151941519515196151971519815199152001520115202152031520415205152061520715208152091521015211152121521315214152151521615217152181521915220152211522215223152241522515226152271522815229152301523115232152331523415235152361523715238152391524015241152421524315244152451524615247152481524915250152511525215253152541525515256152571525815259152601526115262152631526415265152661526715268152691527015271152721527315274152751527615277152781527915280152811528215283152841528515286152871528815289152901529115292152931529415295152961529715298152991530015301153021530315304153051530615307153081530915310153111531215313153141531515316153171531815319153201532115322153231532415325153261532715328153291533015331153321533315334153351533615337153381533915340153411534215343153441534515346153471534815349153501535115352153531535415355153561535715358153591536015361153621536315364153651536615367153681536915370153711537215373153741537515376153771537815379153801538115382153831538415385153861538715388153891539015391153921539315394153951539615397153981539915400154011540215403154041540515406154071540815409154101541115412154131541415415154161541715418154191542015421154221542315424154251542615427154281542915430154311543215433154341543515436154371543815439154401544115442154431544415445154461544715448154491545015451154521545315454154551545615457154581545915460154611546215463154641546515466154671546815469154701547115472154731547415475154761547715478
  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. </ul>
  1116. </nav>
  1117. </li>
  1118. <li class="md-nav__item md-nav__item--nested">
  1119. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_2" >
  1120. <label class="md-nav__link" for="__nav_6_2" id="__nav_6_2_label" tabindex="0">
  1121. <span class="md-ellipsis">
  1122. External Resources
  1123. </span>
  1124. <span class="md-nav__icon md-icon"></span>
  1125. </label>
  1126. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_2_label" aria-expanded="false">
  1127. <label class="md-nav__title" for="__nav_6_2">
  1128. <span class="md-nav__icon md-icon"></span>
  1129. External Resources
  1130. </label>
  1131. <ul class="md-nav__list" data-md-scrollfix>
  1132. <li class="md-nav__item">
  1133. <a href="../../eso-talks/" class="md-nav__link">
  1134. <span class="md-ellipsis">
  1135. Talks
  1136. </span>
  1137. </a>
  1138. </li>
  1139. <li class="md-nav__item">
  1140. <a href="../../eso-demos/" class="md-nav__link">
  1141. <span class="md-ellipsis">
  1142. Demos
  1143. </span>
  1144. </a>
  1145. </li>
  1146. <li class="md-nav__item">
  1147. <a href="../../eso-blogs/" class="md-nav__link">
  1148. <span class="md-ellipsis">
  1149. Blogs
  1150. </span>
  1151. </a>
  1152. </li>
  1153. <li class="md-nav__item">
  1154. <a href="../../eso-tools/" class="md-nav__link">
  1155. <span class="md-ellipsis">
  1156. Tools
  1157. </span>
  1158. </a>
  1159. </li>
  1160. </ul>
  1161. </nav>
  1162. </li>
  1163. </ul>
  1164. </nav>
  1165. </li>
  1166. </ul>
  1167. </nav>
  1168. </div>
  1169. </div>
  1170. </div>
  1171. <div class="md-sidebar md-sidebar--secondary" data-md-component="sidebar" data-md-type="toc" >
  1172. <div class="md-sidebar__scrollwrap">
  1173. <div class="md-sidebar__inner">
  1174. <nav class="md-nav md-nav--secondary" aria-label="Table of contents">
  1175. </nav>
  1176. </div>
  1177. </div>
  1178. </div>
  1179. <div class="md-content" data-md-component="content">
  1180. <article class="md-content__inner md-typeset">
  1181. <h1>API specification</h1>
  1182. <p>Packages:</p>
  1183. <ul>
  1184. <li>
  1185. <a href="#external-secrets.io%2fv1">external-secrets.io/v1</a>
  1186. </li>
  1187. </ul>
  1188. <h2 id="external-secrets.io/v1">external-secrets.io/v1</h2>
  1189. <p>
  1190. <p>Package v1 contains resources for external-secrets</p>
  1191. </p>
  1192. <p>Resource Types:</p>
  1193. <ul></ul>
  1194. <h3 id="external-secrets.io/v1.AWSAuth">AWSAuth
  1195. </h3>
  1196. <p>
  1197. (<em>Appears on:</em>
  1198. <a href="#external-secrets.io/v1.AWSProvider">AWSProvider</a>)
  1199. </p>
  1200. <p>
  1201. <p>AWSAuth tells the controller how to do authentication with aws.
  1202. Only one of secretRef or jwt can be specified.
  1203. if none is specified the controller will load credentials using the aws sdk defaults.</p>
  1204. </p>
  1205. <table>
  1206. <thead>
  1207. <tr>
  1208. <th>Field</th>
  1209. <th>Description</th>
  1210. </tr>
  1211. </thead>
  1212. <tbody>
  1213. <tr>
  1214. <td>
  1215. <code>secretRef</code></br>
  1216. <em>
  1217. <a href="#external-secrets.io/v1.AWSAuthSecretRef">
  1218. AWSAuthSecretRef
  1219. </a>
  1220. </em>
  1221. </td>
  1222. <td>
  1223. <em>(Optional)</em>
  1224. </td>
  1225. </tr>
  1226. <tr>
  1227. <td>
  1228. <code>jwt</code></br>
  1229. <em>
  1230. <a href="#external-secrets.io/v1.AWSJWTAuth">
  1231. AWSJWTAuth
  1232. </a>
  1233. </em>
  1234. </td>
  1235. <td>
  1236. <em>(Optional)</em>
  1237. </td>
  1238. </tr>
  1239. </tbody>
  1240. </table>
  1241. <h3 id="external-secrets.io/v1.AWSAuthSecretRef">AWSAuthSecretRef
  1242. </h3>
  1243. <p>
  1244. (<em>Appears on:</em>
  1245. <a href="#external-secrets.io/v1.AWSAuth">AWSAuth</a>)
  1246. </p>
  1247. <p>
  1248. <p>AWSAuthSecretRef holds secret references for AWS credentials
  1249. both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.</p>
  1250. </p>
  1251. <table>
  1252. <thead>
  1253. <tr>
  1254. <th>Field</th>
  1255. <th>Description</th>
  1256. </tr>
  1257. </thead>
  1258. <tbody>
  1259. <tr>
  1260. <td>
  1261. <code>accessKeyIDSecretRef</code></br>
  1262. <em>
  1263. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1264. External Secrets meta/v1.SecretKeySelector
  1265. </a>
  1266. </em>
  1267. </td>
  1268. <td>
  1269. <p>The AccessKeyID is used for authentication</p>
  1270. </td>
  1271. </tr>
  1272. <tr>
  1273. <td>
  1274. <code>secretAccessKeySecretRef</code></br>
  1275. <em>
  1276. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1277. External Secrets meta/v1.SecretKeySelector
  1278. </a>
  1279. </em>
  1280. </td>
  1281. <td>
  1282. <p>The SecretAccessKey is used for authentication</p>
  1283. </td>
  1284. </tr>
  1285. <tr>
  1286. <td>
  1287. <code>sessionTokenSecretRef</code></br>
  1288. <em>
  1289. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1290. External Secrets meta/v1.SecretKeySelector
  1291. </a>
  1292. </em>
  1293. </td>
  1294. <td>
  1295. <p>The SessionToken used for authentication
  1296. This must be defined if AccessKeyID and SecretAccessKey are temporary credentials
  1297. 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>
  1298. </td>
  1299. </tr>
  1300. </tbody>
  1301. </table>
  1302. <h3 id="external-secrets.io/v1.AWSJWTAuth">AWSJWTAuth
  1303. </h3>
  1304. <p>
  1305. (<em>Appears on:</em>
  1306. <a href="#external-secrets.io/v1.AWSAuth">AWSAuth</a>)
  1307. </p>
  1308. <p>
  1309. <p>Authenticate against AWS using service account tokens.</p>
  1310. </p>
  1311. <table>
  1312. <thead>
  1313. <tr>
  1314. <th>Field</th>
  1315. <th>Description</th>
  1316. </tr>
  1317. </thead>
  1318. <tbody>
  1319. <tr>
  1320. <td>
  1321. <code>serviceAccountRef</code></br>
  1322. <em>
  1323. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  1324. External Secrets meta/v1.ServiceAccountSelector
  1325. </a>
  1326. </em>
  1327. </td>
  1328. <td>
  1329. </td>
  1330. </tr>
  1331. </tbody>
  1332. </table>
  1333. <h3 id="external-secrets.io/v1.AWSProvider">AWSProvider
  1334. </h3>
  1335. <p>
  1336. (<em>Appears on:</em>
  1337. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  1338. </p>
  1339. <p>
  1340. <p>AWSProvider configures a store to sync secrets with AWS.</p>
  1341. </p>
  1342. <table>
  1343. <thead>
  1344. <tr>
  1345. <th>Field</th>
  1346. <th>Description</th>
  1347. </tr>
  1348. </thead>
  1349. <tbody>
  1350. <tr>
  1351. <td>
  1352. <code>service</code></br>
  1353. <em>
  1354. <a href="#external-secrets.io/v1.AWSServiceType">
  1355. AWSServiceType
  1356. </a>
  1357. </em>
  1358. </td>
  1359. <td>
  1360. <p>Service defines which service should be used to fetch the secrets</p>
  1361. </td>
  1362. </tr>
  1363. <tr>
  1364. <td>
  1365. <code>auth</code></br>
  1366. <em>
  1367. <a href="#external-secrets.io/v1.AWSAuth">
  1368. AWSAuth
  1369. </a>
  1370. </em>
  1371. </td>
  1372. <td>
  1373. <em>(Optional)</em>
  1374. <p>Auth defines the information necessary to authenticate against AWS
  1375. if not set aws sdk will infer credentials from your environment
  1376. 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>
  1377. </td>
  1378. </tr>
  1379. <tr>
  1380. <td>
  1381. <code>role</code></br>
  1382. <em>
  1383. string
  1384. </em>
  1385. </td>
  1386. <td>
  1387. <em>(Optional)</em>
  1388. <p>Role is a Role ARN which the provider will assume</p>
  1389. </td>
  1390. </tr>
  1391. <tr>
  1392. <td>
  1393. <code>region</code></br>
  1394. <em>
  1395. string
  1396. </em>
  1397. </td>
  1398. <td>
  1399. <p>AWS Region to be used for the provider</p>
  1400. </td>
  1401. </tr>
  1402. <tr>
  1403. <td>
  1404. <code>additionalRoles</code></br>
  1405. <em>
  1406. []string
  1407. </em>
  1408. </td>
  1409. <td>
  1410. <em>(Optional)</em>
  1411. <p>AdditionalRoles is a chained list of Role ARNs which the provider will sequentially assume before assuming the Role</p>
  1412. </td>
  1413. </tr>
  1414. <tr>
  1415. <td>
  1416. <code>externalID</code></br>
  1417. <em>
  1418. string
  1419. </em>
  1420. </td>
  1421. <td>
  1422. <p>AWS External ID set on assumed IAM roles</p>
  1423. </td>
  1424. </tr>
  1425. <tr>
  1426. <td>
  1427. <code>sessionTags</code></br>
  1428. <em>
  1429. <a href="#external-secrets.io/v1.*github.com/external-secrets/external-secrets/apis/externalsecrets/v1.Tag">
  1430. []*github.com/external-secrets/external-secrets/apis/externalsecrets/v1.Tag
  1431. </a>
  1432. </em>
  1433. </td>
  1434. <td>
  1435. <em>(Optional)</em>
  1436. <p>AWS STS assume role session tags</p>
  1437. </td>
  1438. </tr>
  1439. <tr>
  1440. <td>
  1441. <code>secretsManager</code></br>
  1442. <em>
  1443. <a href="#external-secrets.io/v1.SecretsManager">
  1444. SecretsManager
  1445. </a>
  1446. </em>
  1447. </td>
  1448. <td>
  1449. <em>(Optional)</em>
  1450. <p>SecretsManager defines how the provider behaves when interacting with AWS SecretsManager</p>
  1451. </td>
  1452. </tr>
  1453. <tr>
  1454. <td>
  1455. <code>transitiveTagKeys</code></br>
  1456. <em>
  1457. []string
  1458. </em>
  1459. </td>
  1460. <td>
  1461. <em>(Optional)</em>
  1462. <p>AWS STS assume role transitive session tags. Required when multiple rules are used with the provider</p>
  1463. </td>
  1464. </tr>
  1465. <tr>
  1466. <td>
  1467. <code>prefix</code></br>
  1468. <em>
  1469. string
  1470. </em>
  1471. </td>
  1472. <td>
  1473. <em>(Optional)</em>
  1474. <p>Prefix adds a prefix to all retrieved values.</p>
  1475. </td>
  1476. </tr>
  1477. </tbody>
  1478. </table>
  1479. <h3 id="external-secrets.io/v1.AWSServiceType">AWSServiceType
  1480. (<code>string</code> alias)</p></h3>
  1481. <p>
  1482. (<em>Appears on:</em>
  1483. <a href="#external-secrets.io/v1.AWSProvider">AWSProvider</a>)
  1484. </p>
  1485. <p>
  1486. <p>AWSServiceType is a enum that defines the service/API that is used to fetch the secrets.</p>
  1487. </p>
  1488. <table>
  1489. <thead>
  1490. <tr>
  1491. <th>Value</th>
  1492. <th>Description</th>
  1493. </tr>
  1494. </thead>
  1495. <tbody><tr><td><p>&#34;ParameterStore&#34;</p></td>
  1496. <td><p>AWSServiceParameterStore is the AWS SystemsManager ParameterStore service.
  1497. 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>
  1498. </td>
  1499. </tr><tr><td><p>&#34;SecretsManager&#34;</p></td>
  1500. <td><p>AWSServiceSecretsManager is the AWS SecretsManager service.
  1501. 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>
  1502. </td>
  1503. </tr></tbody>
  1504. </table>
  1505. <h3 id="external-secrets.io/v1.AkeylessAuth">AkeylessAuth
  1506. </h3>
  1507. <p>
  1508. (<em>Appears on:</em>
  1509. <a href="#external-secrets.io/v1.AkeylessProvider">AkeylessProvider</a>)
  1510. </p>
  1511. <p>
  1512. </p>
  1513. <table>
  1514. <thead>
  1515. <tr>
  1516. <th>Field</th>
  1517. <th>Description</th>
  1518. </tr>
  1519. </thead>
  1520. <tbody>
  1521. <tr>
  1522. <td>
  1523. <code>secretRef</code></br>
  1524. <em>
  1525. <a href="#external-secrets.io/v1.AkeylessAuthSecretRef">
  1526. AkeylessAuthSecretRef
  1527. </a>
  1528. </em>
  1529. </td>
  1530. <td>
  1531. <em>(Optional)</em>
  1532. <p>Reference to a Secret that contains the details
  1533. to authenticate with Akeyless.</p>
  1534. </td>
  1535. </tr>
  1536. <tr>
  1537. <td>
  1538. <code>kubernetesAuth</code></br>
  1539. <em>
  1540. <a href="#external-secrets.io/v1.AkeylessKubernetesAuth">
  1541. AkeylessKubernetesAuth
  1542. </a>
  1543. </em>
  1544. </td>
  1545. <td>
  1546. <em>(Optional)</em>
  1547. <p>Kubernetes authenticates with Akeyless by passing the ServiceAccount
  1548. token stored in the named Secret resource.</p>
  1549. </td>
  1550. </tr>
  1551. </tbody>
  1552. </table>
  1553. <h3 id="external-secrets.io/v1.AkeylessAuthSecretRef">AkeylessAuthSecretRef
  1554. </h3>
  1555. <p>
  1556. (<em>Appears on:</em>
  1557. <a href="#external-secrets.io/v1.AkeylessAuth">AkeylessAuth</a>)
  1558. </p>
  1559. <p>
  1560. <p>AkeylessAuthSecretRef
  1561. AKEYLESS_ACCESS_TYPE_PARAM: AZURE_OBJ_ID OR GCP_AUDIENCE OR ACCESS_KEY OR KUB_CONFIG_NAME.</p>
  1562. </p>
  1563. <table>
  1564. <thead>
  1565. <tr>
  1566. <th>Field</th>
  1567. <th>Description</th>
  1568. </tr>
  1569. </thead>
  1570. <tbody>
  1571. <tr>
  1572. <td>
  1573. <code>accessID</code></br>
  1574. <em>
  1575. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1576. External Secrets meta/v1.SecretKeySelector
  1577. </a>
  1578. </em>
  1579. </td>
  1580. <td>
  1581. <p>The SecretAccessID is used for authentication</p>
  1582. </td>
  1583. </tr>
  1584. <tr>
  1585. <td>
  1586. <code>accessType</code></br>
  1587. <em>
  1588. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1589. External Secrets meta/v1.SecretKeySelector
  1590. </a>
  1591. </em>
  1592. </td>
  1593. <td>
  1594. </td>
  1595. </tr>
  1596. <tr>
  1597. <td>
  1598. <code>accessTypeParam</code></br>
  1599. <em>
  1600. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1601. External Secrets meta/v1.SecretKeySelector
  1602. </a>
  1603. </em>
  1604. </td>
  1605. <td>
  1606. </td>
  1607. </tr>
  1608. </tbody>
  1609. </table>
  1610. <h3 id="external-secrets.io/v1.AkeylessKubernetesAuth">AkeylessKubernetesAuth
  1611. </h3>
  1612. <p>
  1613. (<em>Appears on:</em>
  1614. <a href="#external-secrets.io/v1.AkeylessAuth">AkeylessAuth</a>)
  1615. </p>
  1616. <p>
  1617. <p>Authenticate with Kubernetes ServiceAccount token stored.</p>
  1618. </p>
  1619. <table>
  1620. <thead>
  1621. <tr>
  1622. <th>Field</th>
  1623. <th>Description</th>
  1624. </tr>
  1625. </thead>
  1626. <tbody>
  1627. <tr>
  1628. <td>
  1629. <code>accessID</code></br>
  1630. <em>
  1631. string
  1632. </em>
  1633. </td>
  1634. <td>
  1635. <p>the Akeyless Kubernetes auth-method access-id</p>
  1636. </td>
  1637. </tr>
  1638. <tr>
  1639. <td>
  1640. <code>k8sConfName</code></br>
  1641. <em>
  1642. string
  1643. </em>
  1644. </td>
  1645. <td>
  1646. <p>Kubernetes-auth configuration name in Akeyless-Gateway</p>
  1647. </td>
  1648. </tr>
  1649. <tr>
  1650. <td>
  1651. <code>serviceAccountRef</code></br>
  1652. <em>
  1653. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  1654. External Secrets meta/v1.ServiceAccountSelector
  1655. </a>
  1656. </em>
  1657. </td>
  1658. <td>
  1659. <em>(Optional)</em>
  1660. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  1661. If the service account is specified, the service account secret token JWT will be used
  1662. for authenticating with Akeyless. If the service account selector is not supplied,
  1663. the secretRef will be used instead.</p>
  1664. </td>
  1665. </tr>
  1666. <tr>
  1667. <td>
  1668. <code>secretRef</code></br>
  1669. <em>
  1670. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1671. External Secrets meta/v1.SecretKeySelector
  1672. </a>
  1673. </em>
  1674. </td>
  1675. <td>
  1676. <em>(Optional)</em>
  1677. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  1678. for authenticating with Akeyless. If a name is specified without a key,
  1679. <code>token</code> is the default. If one is not specified, the one bound to
  1680. the controller will be used.</p>
  1681. </td>
  1682. </tr>
  1683. </tbody>
  1684. </table>
  1685. <h3 id="external-secrets.io/v1.AkeylessProvider">AkeylessProvider
  1686. </h3>
  1687. <p>
  1688. (<em>Appears on:</em>
  1689. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  1690. </p>
  1691. <p>
  1692. <p>AkeylessProvider Configures an store to sync secrets using Akeyless KV.</p>
  1693. </p>
  1694. <table>
  1695. <thead>
  1696. <tr>
  1697. <th>Field</th>
  1698. <th>Description</th>
  1699. </tr>
  1700. </thead>
  1701. <tbody>
  1702. <tr>
  1703. <td>
  1704. <code>akeylessGWApiURL</code></br>
  1705. <em>
  1706. string
  1707. </em>
  1708. </td>
  1709. <td>
  1710. <p>Akeyless GW API Url from which the secrets to be fetched from.</p>
  1711. </td>
  1712. </tr>
  1713. <tr>
  1714. <td>
  1715. <code>authSecretRef</code></br>
  1716. <em>
  1717. <a href="#external-secrets.io/v1.AkeylessAuth">
  1718. AkeylessAuth
  1719. </a>
  1720. </em>
  1721. </td>
  1722. <td>
  1723. <p>Auth configures how the operator authenticates with Akeyless.</p>
  1724. </td>
  1725. </tr>
  1726. <tr>
  1727. <td>
  1728. <code>caBundle</code></br>
  1729. <em>
  1730. []byte
  1731. </em>
  1732. </td>
  1733. <td>
  1734. <em>(Optional)</em>
  1735. <p>PEM/base64 encoded CA bundle used to validate Akeyless Gateway certificate. Only used
  1736. if the AkeylessGWApiURL URL is using HTTPS protocol. If not set the system root certificates
  1737. are used to validate the TLS connection.</p>
  1738. </td>
  1739. </tr>
  1740. <tr>
  1741. <td>
  1742. <code>caProvider</code></br>
  1743. <em>
  1744. <a href="#external-secrets.io/v1.CAProvider">
  1745. CAProvider
  1746. </a>
  1747. </em>
  1748. </td>
  1749. <td>
  1750. <em>(Optional)</em>
  1751. <p>The provider for the CA bundle to use to validate Akeyless Gateway certificate.</p>
  1752. </td>
  1753. </tr>
  1754. </tbody>
  1755. </table>
  1756. <h3 id="external-secrets.io/v1.AlibabaAuth">AlibabaAuth
  1757. </h3>
  1758. <p>
  1759. (<em>Appears on:</em>
  1760. <a href="#external-secrets.io/v1.AlibabaProvider">AlibabaProvider</a>)
  1761. </p>
  1762. <p>
  1763. <p>AlibabaAuth contains a secretRef for credentials.</p>
  1764. </p>
  1765. <table>
  1766. <thead>
  1767. <tr>
  1768. <th>Field</th>
  1769. <th>Description</th>
  1770. </tr>
  1771. </thead>
  1772. <tbody>
  1773. <tr>
  1774. <td>
  1775. <code>secretRef</code></br>
  1776. <em>
  1777. <a href="#external-secrets.io/v1.AlibabaAuthSecretRef">
  1778. AlibabaAuthSecretRef
  1779. </a>
  1780. </em>
  1781. </td>
  1782. <td>
  1783. <em>(Optional)</em>
  1784. </td>
  1785. </tr>
  1786. <tr>
  1787. <td>
  1788. <code>rrsa</code></br>
  1789. <em>
  1790. <a href="#external-secrets.io/v1.AlibabaRRSAAuth">
  1791. AlibabaRRSAAuth
  1792. </a>
  1793. </em>
  1794. </td>
  1795. <td>
  1796. <em>(Optional)</em>
  1797. </td>
  1798. </tr>
  1799. </tbody>
  1800. </table>
  1801. <h3 id="external-secrets.io/v1.AlibabaAuthSecretRef">AlibabaAuthSecretRef
  1802. </h3>
  1803. <p>
  1804. (<em>Appears on:</em>
  1805. <a href="#external-secrets.io/v1.AlibabaAuth">AlibabaAuth</a>)
  1806. </p>
  1807. <p>
  1808. <p>AlibabaAuthSecretRef holds secret references for Alibaba credentials.</p>
  1809. </p>
  1810. <table>
  1811. <thead>
  1812. <tr>
  1813. <th>Field</th>
  1814. <th>Description</th>
  1815. </tr>
  1816. </thead>
  1817. <tbody>
  1818. <tr>
  1819. <td>
  1820. <code>accessKeyIDSecretRef</code></br>
  1821. <em>
  1822. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1823. External Secrets meta/v1.SecretKeySelector
  1824. </a>
  1825. </em>
  1826. </td>
  1827. <td>
  1828. <p>The AccessKeyID is used for authentication</p>
  1829. </td>
  1830. </tr>
  1831. <tr>
  1832. <td>
  1833. <code>accessKeySecretSecretRef</code></br>
  1834. <em>
  1835. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1836. External Secrets meta/v1.SecretKeySelector
  1837. </a>
  1838. </em>
  1839. </td>
  1840. <td>
  1841. <p>The AccessKeySecret is used for authentication</p>
  1842. </td>
  1843. </tr>
  1844. </tbody>
  1845. </table>
  1846. <h3 id="external-secrets.io/v1.AlibabaProvider">AlibabaProvider
  1847. </h3>
  1848. <p>
  1849. (<em>Appears on:</em>
  1850. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  1851. </p>
  1852. <p>
  1853. <p>AlibabaProvider configures a store to sync secrets using the Alibaba Secret Manager provider.</p>
  1854. </p>
  1855. <table>
  1856. <thead>
  1857. <tr>
  1858. <th>Field</th>
  1859. <th>Description</th>
  1860. </tr>
  1861. </thead>
  1862. <tbody>
  1863. <tr>
  1864. <td>
  1865. <code>auth</code></br>
  1866. <em>
  1867. <a href="#external-secrets.io/v1.AlibabaAuth">
  1868. AlibabaAuth
  1869. </a>
  1870. </em>
  1871. </td>
  1872. <td>
  1873. </td>
  1874. </tr>
  1875. <tr>
  1876. <td>
  1877. <code>regionID</code></br>
  1878. <em>
  1879. string
  1880. </em>
  1881. </td>
  1882. <td>
  1883. <p>Alibaba Region to be used for the provider</p>
  1884. </td>
  1885. </tr>
  1886. </tbody>
  1887. </table>
  1888. <h3 id="external-secrets.io/v1.AlibabaRRSAAuth">AlibabaRRSAAuth
  1889. </h3>
  1890. <p>
  1891. (<em>Appears on:</em>
  1892. <a href="#external-secrets.io/v1.AlibabaAuth">AlibabaAuth</a>)
  1893. </p>
  1894. <p>
  1895. <p>Authenticate against Alibaba using RRSA.</p>
  1896. </p>
  1897. <table>
  1898. <thead>
  1899. <tr>
  1900. <th>Field</th>
  1901. <th>Description</th>
  1902. </tr>
  1903. </thead>
  1904. <tbody>
  1905. <tr>
  1906. <td>
  1907. <code>oidcProviderArn</code></br>
  1908. <em>
  1909. string
  1910. </em>
  1911. </td>
  1912. <td>
  1913. </td>
  1914. </tr>
  1915. <tr>
  1916. <td>
  1917. <code>oidcTokenFilePath</code></br>
  1918. <em>
  1919. string
  1920. </em>
  1921. </td>
  1922. <td>
  1923. </td>
  1924. </tr>
  1925. <tr>
  1926. <td>
  1927. <code>roleArn</code></br>
  1928. <em>
  1929. string
  1930. </em>
  1931. </td>
  1932. <td>
  1933. </td>
  1934. </tr>
  1935. <tr>
  1936. <td>
  1937. <code>sessionName</code></br>
  1938. <em>
  1939. string
  1940. </em>
  1941. </td>
  1942. <td>
  1943. </td>
  1944. </tr>
  1945. </tbody>
  1946. </table>
  1947. <h3 id="external-secrets.io/v1.AuthorizationProtocol">AuthorizationProtocol
  1948. </h3>
  1949. <p>
  1950. (<em>Appears on:</em>
  1951. <a href="#external-secrets.io/v1.WebhookProvider">WebhookProvider</a>)
  1952. </p>
  1953. <p>
  1954. <p>AuthorizationProtocol contains the protocol-specific configuration</p>
  1955. </p>
  1956. <table>
  1957. <thead>
  1958. <tr>
  1959. <th>Field</th>
  1960. <th>Description</th>
  1961. </tr>
  1962. </thead>
  1963. <tbody>
  1964. <tr>
  1965. <td>
  1966. <code>ntlm</code></br>
  1967. <em>
  1968. <a href="#external-secrets.io/v1.NTLMProtocol">
  1969. NTLMProtocol
  1970. </a>
  1971. </em>
  1972. </td>
  1973. <td>
  1974. <em>(Optional)</em>
  1975. <p>NTLMProtocol configures the store to use NTLM for auth</p>
  1976. </td>
  1977. </tr>
  1978. </tbody>
  1979. </table>
  1980. <h3 id="external-secrets.io/v1.AwsAuthCredentials">AwsAuthCredentials
  1981. </h3>
  1982. <p>
  1983. (<em>Appears on:</em>
  1984. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  1985. </p>
  1986. <p>
  1987. </p>
  1988. <table>
  1989. <thead>
  1990. <tr>
  1991. <th>Field</th>
  1992. <th>Description</th>
  1993. </tr>
  1994. </thead>
  1995. <tbody>
  1996. <tr>
  1997. <td>
  1998. <code>identityId</code></br>
  1999. <em>
  2000. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2001. External Secrets meta/v1.SecretKeySelector
  2002. </a>
  2003. </em>
  2004. </td>
  2005. <td>
  2006. </td>
  2007. </tr>
  2008. </tbody>
  2009. </table>
  2010. <h3 id="external-secrets.io/v1.AwsCredentialsConfig">AwsCredentialsConfig
  2011. </h3>
  2012. <p>
  2013. (<em>Appears on:</em>
  2014. <a href="#external-secrets.io/v1.GCPWorkloadIdentityFederation">GCPWorkloadIdentityFederation</a>)
  2015. </p>
  2016. <p>
  2017. <p>AwsCredentialsConfig holds the region and the Secret reference which contains the AWS credentials.</p>
  2018. </p>
  2019. <table>
  2020. <thead>
  2021. <tr>
  2022. <th>Field</th>
  2023. <th>Description</th>
  2024. </tr>
  2025. </thead>
  2026. <tbody>
  2027. <tr>
  2028. <td>
  2029. <code>region</code></br>
  2030. <em>
  2031. string
  2032. </em>
  2033. </td>
  2034. <td>
  2035. <p>region is for configuring the AWS region to be used.</p>
  2036. </td>
  2037. </tr>
  2038. <tr>
  2039. <td>
  2040. <code>awsCredentialsSecretRef</code></br>
  2041. <em>
  2042. <a href="#external-secrets.io/v1.SecretReference">
  2043. SecretReference
  2044. </a>
  2045. </em>
  2046. </td>
  2047. <td>
  2048. <p>awsCredentialsSecretRef is the reference to the secret which holds the AWS credentials.
  2049. Secret should be created with below names for keys
  2050. - aws_access_key_id: Access Key ID, which is the unique identifier for the AWS account or the IAM user.
  2051. - aws_secret_access_key: Secret Access Key, which is used to authenticate requests made to AWS services.
  2052. - aws_session_token: Session Token, is the short-lived token to authenticate requests made to AWS services.</p>
  2053. </td>
  2054. </tr>
  2055. </tbody>
  2056. </table>
  2057. <h3 id="external-secrets.io/v1.AzureAuthCredentials">AzureAuthCredentials
  2058. </h3>
  2059. <p>
  2060. (<em>Appears on:</em>
  2061. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  2062. </p>
  2063. <p>
  2064. </p>
  2065. <table>
  2066. <thead>
  2067. <tr>
  2068. <th>Field</th>
  2069. <th>Description</th>
  2070. </tr>
  2071. </thead>
  2072. <tbody>
  2073. <tr>
  2074. <td>
  2075. <code>identityId</code></br>
  2076. <em>
  2077. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2078. External Secrets meta/v1.SecretKeySelector
  2079. </a>
  2080. </em>
  2081. </td>
  2082. <td>
  2083. </td>
  2084. </tr>
  2085. <tr>
  2086. <td>
  2087. <code>resource</code></br>
  2088. <em>
  2089. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2090. External Secrets meta/v1.SecretKeySelector
  2091. </a>
  2092. </em>
  2093. </td>
  2094. <td>
  2095. <em>(Optional)</em>
  2096. </td>
  2097. </tr>
  2098. </tbody>
  2099. </table>
  2100. <h3 id="external-secrets.io/v1.AzureAuthType">AzureAuthType
  2101. (<code>string</code> alias)</p></h3>
  2102. <p>
  2103. (<em>Appears on:</em>
  2104. <a href="#external-secrets.io/v1.AzureKVProvider">AzureKVProvider</a>)
  2105. </p>
  2106. <p>
  2107. <p>AuthType describes how to authenticate to the Azure Keyvault
  2108. Only one of the following auth types may be specified.
  2109. If none of the following auth type is specified, the default one
  2110. is ServicePrincipal.</p>
  2111. </p>
  2112. <table>
  2113. <thead>
  2114. <tr>
  2115. <th>Value</th>
  2116. <th>Description</th>
  2117. </tr>
  2118. </thead>
  2119. <tbody><tr><td><p>&#34;ManagedIdentity&#34;</p></td>
  2120. <td><p>Using Managed Identity to authenticate. Used with aad-pod-identity installed in the cluster.</p>
  2121. </td>
  2122. </tr><tr><td><p>&#34;ServicePrincipal&#34;</p></td>
  2123. <td><p>Using service principal to authenticate, which needs a tenantId, a clientId and a clientSecret.</p>
  2124. </td>
  2125. </tr><tr><td><p>&#34;WorkloadIdentity&#34;</p></td>
  2126. <td><p>Using Workload Identity service accounts to authenticate.</p>
  2127. </td>
  2128. </tr></tbody>
  2129. </table>
  2130. <h3 id="external-secrets.io/v1.AzureCustomCloudConfig">AzureCustomCloudConfig
  2131. </h3>
  2132. <p>
  2133. (<em>Appears on:</em>
  2134. <a href="#external-secrets.io/v1.AzureKVProvider">AzureKVProvider</a>)
  2135. </p>
  2136. <p>
  2137. <p>AzureCustomCloudConfig specifies custom cloud configuration for private Azure environments
  2138. IMPORTANT: Custom cloud configuration is ONLY supported when UseAzureSDK is true.
  2139. The legacy go-autorest SDK does not support custom cloud endpoints.</p>
  2140. </p>
  2141. <table>
  2142. <thead>
  2143. <tr>
  2144. <th>Field</th>
  2145. <th>Description</th>
  2146. </tr>
  2147. </thead>
  2148. <tbody>
  2149. <tr>
  2150. <td>
  2151. <code>activeDirectoryEndpoint</code></br>
  2152. <em>
  2153. string
  2154. </em>
  2155. </td>
  2156. <td>
  2157. <p>ActiveDirectoryEndpoint is the AAD endpoint for authentication
  2158. Required when using custom cloud configuration</p>
  2159. </td>
  2160. </tr>
  2161. <tr>
  2162. <td>
  2163. <code>keyVaultEndpoint</code></br>
  2164. <em>
  2165. string
  2166. </em>
  2167. </td>
  2168. <td>
  2169. <em>(Optional)</em>
  2170. <p>KeyVaultEndpoint is the Key Vault service endpoint</p>
  2171. </td>
  2172. </tr>
  2173. <tr>
  2174. <td>
  2175. <code>keyVaultDNSSuffix</code></br>
  2176. <em>
  2177. string
  2178. </em>
  2179. </td>
  2180. <td>
  2181. <em>(Optional)</em>
  2182. <p>KeyVaultDNSSuffix is the DNS suffix for Key Vault URLs</p>
  2183. </td>
  2184. </tr>
  2185. <tr>
  2186. <td>
  2187. <code>resourceManagerEndpoint</code></br>
  2188. <em>
  2189. string
  2190. </em>
  2191. </td>
  2192. <td>
  2193. <em>(Optional)</em>
  2194. <p>ResourceManagerEndpoint is the Azure Resource Manager endpoint</p>
  2195. </td>
  2196. </tr>
  2197. </tbody>
  2198. </table>
  2199. <h3 id="external-secrets.io/v1.AzureEnvironmentType">AzureEnvironmentType
  2200. (<code>string</code> alias)</p></h3>
  2201. <p>
  2202. (<em>Appears on:</em>
  2203. <a href="#external-secrets.io/v1.AzureKVProvider">AzureKVProvider</a>)
  2204. </p>
  2205. <p>
  2206. <p>AzureEnvironmentType specifies the Azure cloud environment endpoints to use for
  2207. connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint.
  2208. 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>
  2209. PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud, AzureStackCloud</p>
  2210. </p>
  2211. <table>
  2212. <thead>
  2213. <tr>
  2214. <th>Value</th>
  2215. <th>Description</th>
  2216. </tr>
  2217. </thead>
  2218. <tbody><tr><td><p>&#34;AzureStackCloud&#34;</p></td>
  2219. <td></td>
  2220. </tr><tr><td><p>&#34;ChinaCloud&#34;</p></td>
  2221. <td></td>
  2222. </tr><tr><td><p>&#34;GermanCloud&#34;</p></td>
  2223. <td></td>
  2224. </tr><tr><td><p>&#34;PublicCloud&#34;</p></td>
  2225. <td></td>
  2226. </tr><tr><td><p>&#34;USGovernmentCloud&#34;</p></td>
  2227. <td></td>
  2228. </tr></tbody>
  2229. </table>
  2230. <h3 id="external-secrets.io/v1.AzureKVAuth">AzureKVAuth
  2231. </h3>
  2232. <p>
  2233. (<em>Appears on:</em>
  2234. <a href="#external-secrets.io/v1.AzureKVProvider">AzureKVProvider</a>)
  2235. </p>
  2236. <p>
  2237. <p>Configuration used to authenticate with Azure.</p>
  2238. </p>
  2239. <table>
  2240. <thead>
  2241. <tr>
  2242. <th>Field</th>
  2243. <th>Description</th>
  2244. </tr>
  2245. </thead>
  2246. <tbody>
  2247. <tr>
  2248. <td>
  2249. <code>clientId</code></br>
  2250. <em>
  2251. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2252. External Secrets meta/v1.SecretKeySelector
  2253. </a>
  2254. </em>
  2255. </td>
  2256. <td>
  2257. <em>(Optional)</em>
  2258. <p>The Azure clientId of the service principle or managed identity used for authentication.</p>
  2259. </td>
  2260. </tr>
  2261. <tr>
  2262. <td>
  2263. <code>tenantId</code></br>
  2264. <em>
  2265. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2266. External Secrets meta/v1.SecretKeySelector
  2267. </a>
  2268. </em>
  2269. </td>
  2270. <td>
  2271. <em>(Optional)</em>
  2272. <p>The Azure tenantId of the managed identity used for authentication.</p>
  2273. </td>
  2274. </tr>
  2275. <tr>
  2276. <td>
  2277. <code>clientSecret</code></br>
  2278. <em>
  2279. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2280. External Secrets meta/v1.SecretKeySelector
  2281. </a>
  2282. </em>
  2283. </td>
  2284. <td>
  2285. <em>(Optional)</em>
  2286. <p>The Azure ClientSecret of the service principle used for authentication.</p>
  2287. </td>
  2288. </tr>
  2289. <tr>
  2290. <td>
  2291. <code>clientCertificate</code></br>
  2292. <em>
  2293. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2294. External Secrets meta/v1.SecretKeySelector
  2295. </a>
  2296. </em>
  2297. </td>
  2298. <td>
  2299. <em>(Optional)</em>
  2300. <p>The Azure ClientCertificate of the service principle used for authentication.</p>
  2301. </td>
  2302. </tr>
  2303. </tbody>
  2304. </table>
  2305. <h3 id="external-secrets.io/v1.AzureKVProvider">AzureKVProvider
  2306. </h3>
  2307. <p>
  2308. (<em>Appears on:</em>
  2309. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  2310. </p>
  2311. <p>
  2312. <p>Configures an store to sync secrets using Azure KV.</p>
  2313. </p>
  2314. <table>
  2315. <thead>
  2316. <tr>
  2317. <th>Field</th>
  2318. <th>Description</th>
  2319. </tr>
  2320. </thead>
  2321. <tbody>
  2322. <tr>
  2323. <td>
  2324. <code>authType</code></br>
  2325. <em>
  2326. <a href="#external-secrets.io/v1.AzureAuthType">
  2327. AzureAuthType
  2328. </a>
  2329. </em>
  2330. </td>
  2331. <td>
  2332. <em>(Optional)</em>
  2333. <p>Auth type defines how to authenticate to the keyvault service.
  2334. Valid values are:
  2335. - &ldquo;ServicePrincipal&rdquo; (default): Using a service principal (tenantId, clientId, clientSecret)
  2336. - &ldquo;ManagedIdentity&rdquo;: Using Managed Identity assigned to the pod (see aad-pod-identity)</p>
  2337. </td>
  2338. </tr>
  2339. <tr>
  2340. <td>
  2341. <code>vaultUrl</code></br>
  2342. <em>
  2343. string
  2344. </em>
  2345. </td>
  2346. <td>
  2347. <p>Vault Url from which the secrets to be fetched from.</p>
  2348. </td>
  2349. </tr>
  2350. <tr>
  2351. <td>
  2352. <code>tenantId</code></br>
  2353. <em>
  2354. string
  2355. </em>
  2356. </td>
  2357. <td>
  2358. <em>(Optional)</em>
  2359. <p>TenantID configures the Azure Tenant to send requests to. Required for ServicePrincipal auth type. Optional for WorkloadIdentity.</p>
  2360. </td>
  2361. </tr>
  2362. <tr>
  2363. <td>
  2364. <code>environmentType</code></br>
  2365. <em>
  2366. <a href="#external-secrets.io/v1.AzureEnvironmentType">
  2367. AzureEnvironmentType
  2368. </a>
  2369. </em>
  2370. </td>
  2371. <td>
  2372. <p>EnvironmentType specifies the Azure cloud environment endpoints to use for
  2373. connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint.
  2374. 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>
  2375. PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud, AzureStackCloud
  2376. Use AzureStackCloud when you need to configure custom Azure Stack Hub or Azure Stack Edge endpoints.</p>
  2377. </td>
  2378. </tr>
  2379. <tr>
  2380. <td>
  2381. <code>authSecretRef</code></br>
  2382. <em>
  2383. <a href="#external-secrets.io/v1.AzureKVAuth">
  2384. AzureKVAuth
  2385. </a>
  2386. </em>
  2387. </td>
  2388. <td>
  2389. <em>(Optional)</em>
  2390. <p>Auth configures how the operator authenticates with Azure. Required for ServicePrincipal auth type. Optional for WorkloadIdentity.</p>
  2391. </td>
  2392. </tr>
  2393. <tr>
  2394. <td>
  2395. <code>serviceAccountRef</code></br>
  2396. <em>
  2397. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  2398. External Secrets meta/v1.ServiceAccountSelector
  2399. </a>
  2400. </em>
  2401. </td>
  2402. <td>
  2403. <em>(Optional)</em>
  2404. <p>ServiceAccountRef specified the service account
  2405. that should be used when authenticating with WorkloadIdentity.</p>
  2406. </td>
  2407. </tr>
  2408. <tr>
  2409. <td>
  2410. <code>identityId</code></br>
  2411. <em>
  2412. string
  2413. </em>
  2414. </td>
  2415. <td>
  2416. <em>(Optional)</em>
  2417. <p>If multiple Managed Identity is assigned to the pod, you can select the one to be used</p>
  2418. </td>
  2419. </tr>
  2420. <tr>
  2421. <td>
  2422. <code>useAzureSDK</code></br>
  2423. <em>
  2424. bool
  2425. </em>
  2426. </td>
  2427. <td>
  2428. <em>(Optional)</em>
  2429. <p>UseAzureSDK enables the use of the new Azure SDK for Go (azcore-based) instead of the legacy go-autorest SDK.
  2430. This is experimental and may have behavioral differences. Defaults to false (legacy SDK).</p>
  2431. </td>
  2432. </tr>
  2433. <tr>
  2434. <td>
  2435. <code>customCloudConfig</code></br>
  2436. <em>
  2437. <a href="#external-secrets.io/v1.AzureCustomCloudConfig">
  2438. AzureCustomCloudConfig
  2439. </a>
  2440. </em>
  2441. </td>
  2442. <td>
  2443. <em>(Optional)</em>
  2444. <p>CustomCloudConfig defines custom Azure Stack Hub or Azure Stack Edge endpoints.
  2445. Required when EnvironmentType is AzureStackCloud.
  2446. IMPORTANT: This feature REQUIRES UseAzureSDK to be set to true. Custom cloud
  2447. configuration is not supported with the legacy go-autorest SDK.</p>
  2448. </td>
  2449. </tr>
  2450. </tbody>
  2451. </table>
  2452. <h3 id="external-secrets.io/v1.BeyondTrustProviderSecretRef">BeyondTrustProviderSecretRef
  2453. </h3>
  2454. <p>
  2455. (<em>Appears on:</em>
  2456. <a href="#external-secrets.io/v1.BeyondtrustAuth">BeyondtrustAuth</a>)
  2457. </p>
  2458. <p>
  2459. </p>
  2460. <table>
  2461. <thead>
  2462. <tr>
  2463. <th>Field</th>
  2464. <th>Description</th>
  2465. </tr>
  2466. </thead>
  2467. <tbody>
  2468. <tr>
  2469. <td>
  2470. <code>value</code></br>
  2471. <em>
  2472. string
  2473. </em>
  2474. </td>
  2475. <td>
  2476. <em>(Optional)</em>
  2477. <p>Value can be specified directly to set a value without using a secret.</p>
  2478. </td>
  2479. </tr>
  2480. <tr>
  2481. <td>
  2482. <code>secretRef</code></br>
  2483. <em>
  2484. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2485. External Secrets meta/v1.SecretKeySelector
  2486. </a>
  2487. </em>
  2488. </td>
  2489. <td>
  2490. <em>(Optional)</em>
  2491. <p>SecretRef references a key in a secret that will be used as value.</p>
  2492. </td>
  2493. </tr>
  2494. </tbody>
  2495. </table>
  2496. <h3 id="external-secrets.io/v1.BeyondtrustAuth">BeyondtrustAuth
  2497. </h3>
  2498. <p>
  2499. (<em>Appears on:</em>
  2500. <a href="#external-secrets.io/v1.BeyondtrustProvider">BeyondtrustProvider</a>)
  2501. </p>
  2502. <p>
  2503. <p>Configures a store to sync secrets using BeyondTrust Password Safe.</p>
  2504. </p>
  2505. <table>
  2506. <thead>
  2507. <tr>
  2508. <th>Field</th>
  2509. <th>Description</th>
  2510. </tr>
  2511. </thead>
  2512. <tbody>
  2513. <tr>
  2514. <td>
  2515. <code>apiKey</code></br>
  2516. <em>
  2517. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2518. BeyondTrustProviderSecretRef
  2519. </a>
  2520. </em>
  2521. </td>
  2522. <td>
  2523. <p>APIKey If not provided then ClientID/ClientSecret become required.</p>
  2524. </td>
  2525. </tr>
  2526. <tr>
  2527. <td>
  2528. <code>clientId</code></br>
  2529. <em>
  2530. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2531. BeyondTrustProviderSecretRef
  2532. </a>
  2533. </em>
  2534. </td>
  2535. <td>
  2536. <p>ClientID is the API OAuth Client ID.</p>
  2537. </td>
  2538. </tr>
  2539. <tr>
  2540. <td>
  2541. <code>clientSecret</code></br>
  2542. <em>
  2543. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2544. BeyondTrustProviderSecretRef
  2545. </a>
  2546. </em>
  2547. </td>
  2548. <td>
  2549. <p>ClientSecret is the API OAuth Client Secret.</p>
  2550. </td>
  2551. </tr>
  2552. <tr>
  2553. <td>
  2554. <code>certificate</code></br>
  2555. <em>
  2556. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2557. BeyondTrustProviderSecretRef
  2558. </a>
  2559. </em>
  2560. </td>
  2561. <td>
  2562. <p>Certificate (cert.pem) for use when authenticating with an OAuth client Id using a Client Certificate.</p>
  2563. </td>
  2564. </tr>
  2565. <tr>
  2566. <td>
  2567. <code>certificateKey</code></br>
  2568. <em>
  2569. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2570. BeyondTrustProviderSecretRef
  2571. </a>
  2572. </em>
  2573. </td>
  2574. <td>
  2575. <p>Certificate private key (key.pem). For use when authenticating with an OAuth client Id</p>
  2576. </td>
  2577. </tr>
  2578. </tbody>
  2579. </table>
  2580. <h3 id="external-secrets.io/v1.BeyondtrustProvider">BeyondtrustProvider
  2581. </h3>
  2582. <p>
  2583. (<em>Appears on:</em>
  2584. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  2585. </p>
  2586. <p>
  2587. </p>
  2588. <table>
  2589. <thead>
  2590. <tr>
  2591. <th>Field</th>
  2592. <th>Description</th>
  2593. </tr>
  2594. </thead>
  2595. <tbody>
  2596. <tr>
  2597. <td>
  2598. <code>auth</code></br>
  2599. <em>
  2600. <a href="#external-secrets.io/v1.BeyondtrustAuth">
  2601. BeyondtrustAuth
  2602. </a>
  2603. </em>
  2604. </td>
  2605. <td>
  2606. <p>Auth configures how the operator authenticates with Beyondtrust.</p>
  2607. </td>
  2608. </tr>
  2609. <tr>
  2610. <td>
  2611. <code>server</code></br>
  2612. <em>
  2613. <a href="#external-secrets.io/v1.BeyondtrustServer">
  2614. BeyondtrustServer
  2615. </a>
  2616. </em>
  2617. </td>
  2618. <td>
  2619. <p>Auth configures how API server works.</p>
  2620. </td>
  2621. </tr>
  2622. </tbody>
  2623. </table>
  2624. <h3 id="external-secrets.io/v1.BeyondtrustServer">BeyondtrustServer
  2625. </h3>
  2626. <p>
  2627. (<em>Appears on:</em>
  2628. <a href="#external-secrets.io/v1.BeyondtrustProvider">BeyondtrustProvider</a>)
  2629. </p>
  2630. <p>
  2631. <p>Configures a store to sync secrets using BeyondTrust Password Safe.</p>
  2632. </p>
  2633. <table>
  2634. <thead>
  2635. <tr>
  2636. <th>Field</th>
  2637. <th>Description</th>
  2638. </tr>
  2639. </thead>
  2640. <tbody>
  2641. <tr>
  2642. <td>
  2643. <code>apiUrl</code></br>
  2644. <em>
  2645. string
  2646. </em>
  2647. </td>
  2648. <td>
  2649. </td>
  2650. </tr>
  2651. <tr>
  2652. <td>
  2653. <code>apiVersion</code></br>
  2654. <em>
  2655. string
  2656. </em>
  2657. </td>
  2658. <td>
  2659. </td>
  2660. </tr>
  2661. <tr>
  2662. <td>
  2663. <code>retrievalType</code></br>
  2664. <em>
  2665. string
  2666. </em>
  2667. </td>
  2668. <td>
  2669. <p>The secret retrieval type. SECRET = Secrets Safe (credential, text, file). MANAGED_ACCOUNT = Password Safe account associated with a system.</p>
  2670. </td>
  2671. </tr>
  2672. <tr>
  2673. <td>
  2674. <code>separator</code></br>
  2675. <em>
  2676. string
  2677. </em>
  2678. </td>
  2679. <td>
  2680. <p>A character that separates the folder names.</p>
  2681. </td>
  2682. </tr>
  2683. <tr>
  2684. <td>
  2685. <code>verifyCA</code></br>
  2686. <em>
  2687. bool
  2688. </em>
  2689. </td>
  2690. <td>
  2691. </td>
  2692. </tr>
  2693. <tr>
  2694. <td>
  2695. <code>clientTimeOutSeconds</code></br>
  2696. <em>
  2697. int
  2698. </em>
  2699. </td>
  2700. <td>
  2701. <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>
  2702. </td>
  2703. </tr>
  2704. </tbody>
  2705. </table>
  2706. <h3 id="external-secrets.io/v1.BitwardenSecretsManagerAuth">BitwardenSecretsManagerAuth
  2707. </h3>
  2708. <p>
  2709. (<em>Appears on:</em>
  2710. <a href="#external-secrets.io/v1.BitwardenSecretsManagerProvider">BitwardenSecretsManagerProvider</a>)
  2711. </p>
  2712. <p>
  2713. <p>BitwardenSecretsManagerAuth contains the ref to the secret that contains the machine account token.</p>
  2714. </p>
  2715. <table>
  2716. <thead>
  2717. <tr>
  2718. <th>Field</th>
  2719. <th>Description</th>
  2720. </tr>
  2721. </thead>
  2722. <tbody>
  2723. <tr>
  2724. <td>
  2725. <code>secretRef</code></br>
  2726. <em>
  2727. <a href="#external-secrets.io/v1.BitwardenSecretsManagerSecretRef">
  2728. BitwardenSecretsManagerSecretRef
  2729. </a>
  2730. </em>
  2731. </td>
  2732. <td>
  2733. </td>
  2734. </tr>
  2735. </tbody>
  2736. </table>
  2737. <h3 id="external-secrets.io/v1.BitwardenSecretsManagerProvider">BitwardenSecretsManagerProvider
  2738. </h3>
  2739. <p>
  2740. (<em>Appears on:</em>
  2741. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  2742. </p>
  2743. <p>
  2744. <p>BitwardenSecretsManagerProvider configures a store to sync secrets with a Bitwarden Secrets Manager instance.</p>
  2745. </p>
  2746. <table>
  2747. <thead>
  2748. <tr>
  2749. <th>Field</th>
  2750. <th>Description</th>
  2751. </tr>
  2752. </thead>
  2753. <tbody>
  2754. <tr>
  2755. <td>
  2756. <code>apiURL</code></br>
  2757. <em>
  2758. string
  2759. </em>
  2760. </td>
  2761. <td>
  2762. </td>
  2763. </tr>
  2764. <tr>
  2765. <td>
  2766. <code>identityURL</code></br>
  2767. <em>
  2768. string
  2769. </em>
  2770. </td>
  2771. <td>
  2772. </td>
  2773. </tr>
  2774. <tr>
  2775. <td>
  2776. <code>bitwardenServerSDKURL</code></br>
  2777. <em>
  2778. string
  2779. </em>
  2780. </td>
  2781. <td>
  2782. </td>
  2783. </tr>
  2784. <tr>
  2785. <td>
  2786. <code>caBundle</code></br>
  2787. <em>
  2788. string
  2789. </em>
  2790. </td>
  2791. <td>
  2792. <em>(Optional)</em>
  2793. <p>Base64 encoded certificate for the bitwarden server sdk. The sdk MUST run with HTTPS to make sure no MITM attack
  2794. can be performed.</p>
  2795. </td>
  2796. </tr>
  2797. <tr>
  2798. <td>
  2799. <code>caProvider</code></br>
  2800. <em>
  2801. <a href="#external-secrets.io/v1.CAProvider">
  2802. CAProvider
  2803. </a>
  2804. </em>
  2805. </td>
  2806. <td>
  2807. <em>(Optional)</em>
  2808. <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>
  2809. </td>
  2810. </tr>
  2811. <tr>
  2812. <td>
  2813. <code>organizationID</code></br>
  2814. <em>
  2815. string
  2816. </em>
  2817. </td>
  2818. <td>
  2819. <p>OrganizationID determines which organization this secret store manages.</p>
  2820. </td>
  2821. </tr>
  2822. <tr>
  2823. <td>
  2824. <code>projectID</code></br>
  2825. <em>
  2826. string
  2827. </em>
  2828. </td>
  2829. <td>
  2830. <p>ProjectID determines which project this secret store manages.</p>
  2831. </td>
  2832. </tr>
  2833. <tr>
  2834. <td>
  2835. <code>auth</code></br>
  2836. <em>
  2837. <a href="#external-secrets.io/v1.BitwardenSecretsManagerAuth">
  2838. BitwardenSecretsManagerAuth
  2839. </a>
  2840. </em>
  2841. </td>
  2842. <td>
  2843. <p>Auth configures how secret-manager authenticates with a bitwarden machine account instance.
  2844. Make sure that the token being used has permissions on the given secret.</p>
  2845. </td>
  2846. </tr>
  2847. </tbody>
  2848. </table>
  2849. <h3 id="external-secrets.io/v1.BitwardenSecretsManagerSecretRef">BitwardenSecretsManagerSecretRef
  2850. </h3>
  2851. <p>
  2852. (<em>Appears on:</em>
  2853. <a href="#external-secrets.io/v1.BitwardenSecretsManagerAuth">BitwardenSecretsManagerAuth</a>)
  2854. </p>
  2855. <p>
  2856. <p>BitwardenSecretsManagerSecretRef contains the credential ref to the bitwarden instance.</p>
  2857. </p>
  2858. <table>
  2859. <thead>
  2860. <tr>
  2861. <th>Field</th>
  2862. <th>Description</th>
  2863. </tr>
  2864. </thead>
  2865. <tbody>
  2866. <tr>
  2867. <td>
  2868. <code>credentials</code></br>
  2869. <em>
  2870. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2871. External Secrets meta/v1.SecretKeySelector
  2872. </a>
  2873. </em>
  2874. </td>
  2875. <td>
  2876. <p>AccessToken used for the bitwarden instance.</p>
  2877. </td>
  2878. </tr>
  2879. </tbody>
  2880. </table>
  2881. <h3 id="external-secrets.io/v1.ByID">ByID
  2882. </h3>
  2883. <p>
  2884. (<em>Appears on:</em>
  2885. <a href="#external-secrets.io/v1.FetchingPolicy">FetchingPolicy</a>)
  2886. </p>
  2887. <p>
  2888. <p>ByID configures the provider to interpret the <code>data.secretKey.remoteRef.key</code> field in ExternalSecret as secret ID.</p>
  2889. </p>
  2890. <h3 id="external-secrets.io/v1.ByName">ByName
  2891. </h3>
  2892. <p>
  2893. (<em>Appears on:</em>
  2894. <a href="#external-secrets.io/v1.FetchingPolicy">FetchingPolicy</a>)
  2895. </p>
  2896. <p>
  2897. <p>ByName configures the provider to interpret the <code>data.secretKey.remoteRef.key</code> field in ExternalSecret as secret name.</p>
  2898. </p>
  2899. <table>
  2900. <thead>
  2901. <tr>
  2902. <th>Field</th>
  2903. <th>Description</th>
  2904. </tr>
  2905. </thead>
  2906. <tbody>
  2907. <tr>
  2908. <td>
  2909. <code>folderID</code></br>
  2910. <em>
  2911. string
  2912. </em>
  2913. </td>
  2914. <td>
  2915. <p>The folder to fetch secrets from</p>
  2916. </td>
  2917. </tr>
  2918. </tbody>
  2919. </table>
  2920. <h3 id="external-secrets.io/v1.CAProvider">CAProvider
  2921. </h3>
  2922. <p>
  2923. (<em>Appears on:</em>
  2924. <a href="#external-secrets.io/v1.AkeylessProvider">AkeylessProvider</a>,
  2925. <a href="#external-secrets.io/v1.BitwardenSecretsManagerProvider">BitwardenSecretsManagerProvider</a>,
  2926. <a href="#external-secrets.io/v1.ConjurProvider">ConjurProvider</a>,
  2927. <a href="#external-secrets.io/v1.GitlabProvider">GitlabProvider</a>,
  2928. <a href="#external-secrets.io/v1.KubernetesServer">KubernetesServer</a>,
  2929. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  2930. </p>
  2931. <p>
  2932. <p>Used to provide custom certificate authority (CA) certificates
  2933. for a secret store. The CAProvider points to a Secret or ConfigMap resource
  2934. that contains a PEM-encoded certificate.</p>
  2935. </p>
  2936. <table>
  2937. <thead>
  2938. <tr>
  2939. <th>Field</th>
  2940. <th>Description</th>
  2941. </tr>
  2942. </thead>
  2943. <tbody>
  2944. <tr>
  2945. <td>
  2946. <code>type</code></br>
  2947. <em>
  2948. <a href="#external-secrets.io/v1.CAProviderType">
  2949. CAProviderType
  2950. </a>
  2951. </em>
  2952. </td>
  2953. <td>
  2954. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  2955. </td>
  2956. </tr>
  2957. <tr>
  2958. <td>
  2959. <code>name</code></br>
  2960. <em>
  2961. string
  2962. </em>
  2963. </td>
  2964. <td>
  2965. <p>The name of the object located at the provider type.</p>
  2966. </td>
  2967. </tr>
  2968. <tr>
  2969. <td>
  2970. <code>key</code></br>
  2971. <em>
  2972. string
  2973. </em>
  2974. </td>
  2975. <td>
  2976. <p>The key where the CA certificate can be found in the Secret or ConfigMap.</p>
  2977. </td>
  2978. </tr>
  2979. <tr>
  2980. <td>
  2981. <code>namespace</code></br>
  2982. <em>
  2983. string
  2984. </em>
  2985. </td>
  2986. <td>
  2987. <em>(Optional)</em>
  2988. <p>The namespace the Provider type is in.
  2989. Can only be defined when used in a ClusterSecretStore.</p>
  2990. </td>
  2991. </tr>
  2992. </tbody>
  2993. </table>
  2994. <h3 id="external-secrets.io/v1.CAProviderType">CAProviderType
  2995. (<code>string</code> alias)</p></h3>
  2996. <p>
  2997. (<em>Appears on:</em>
  2998. <a href="#external-secrets.io/v1.CAProvider">CAProvider</a>)
  2999. </p>
  3000. <p>
  3001. </p>
  3002. <table>
  3003. <thead>
  3004. <tr>
  3005. <th>Value</th>
  3006. <th>Description</th>
  3007. </tr>
  3008. </thead>
  3009. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  3010. <td></td>
  3011. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  3012. <td></td>
  3013. </tr></tbody>
  3014. </table>
  3015. <h3 id="external-secrets.io/v1.CSMAuth">CSMAuth
  3016. </h3>
  3017. <p>
  3018. (<em>Appears on:</em>
  3019. <a href="#external-secrets.io/v1.CloudruSMProvider">CloudruSMProvider</a>)
  3020. </p>
  3021. <p>
  3022. <p>CSMAuth contains a secretRef for credentials.</p>
  3023. </p>
  3024. <table>
  3025. <thead>
  3026. <tr>
  3027. <th>Field</th>
  3028. <th>Description</th>
  3029. </tr>
  3030. </thead>
  3031. <tbody>
  3032. <tr>
  3033. <td>
  3034. <code>secretRef</code></br>
  3035. <em>
  3036. <a href="#external-secrets.io/v1.CSMAuthSecretRef">
  3037. CSMAuthSecretRef
  3038. </a>
  3039. </em>
  3040. </td>
  3041. <td>
  3042. <em>(Optional)</em>
  3043. </td>
  3044. </tr>
  3045. </tbody>
  3046. </table>
  3047. <h3 id="external-secrets.io/v1.CSMAuthSecretRef">CSMAuthSecretRef
  3048. </h3>
  3049. <p>
  3050. (<em>Appears on:</em>
  3051. <a href="#external-secrets.io/v1.CSMAuth">CSMAuth</a>)
  3052. </p>
  3053. <p>
  3054. <p>CSMAuthSecretRef holds secret references for Cloud.ru credentials.</p>
  3055. </p>
  3056. <table>
  3057. <thead>
  3058. <tr>
  3059. <th>Field</th>
  3060. <th>Description</th>
  3061. </tr>
  3062. </thead>
  3063. <tbody>
  3064. <tr>
  3065. <td>
  3066. <code>accessKeyIDSecretRef</code></br>
  3067. <em>
  3068. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3069. External Secrets meta/v1.SecretKeySelector
  3070. </a>
  3071. </em>
  3072. </td>
  3073. <td>
  3074. <p>The AccessKeyID is used for authentication</p>
  3075. </td>
  3076. </tr>
  3077. <tr>
  3078. <td>
  3079. <code>accessKeySecretSecretRef</code></br>
  3080. <em>
  3081. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3082. External Secrets meta/v1.SecretKeySelector
  3083. </a>
  3084. </em>
  3085. </td>
  3086. <td>
  3087. <p>The AccessKeySecret is used for authentication</p>
  3088. </td>
  3089. </tr>
  3090. </tbody>
  3091. </table>
  3092. <h3 id="external-secrets.io/v1.CertAuth">CertAuth
  3093. </h3>
  3094. <p>
  3095. (<em>Appears on:</em>
  3096. <a href="#external-secrets.io/v1.KubernetesAuth">KubernetesAuth</a>)
  3097. </p>
  3098. <p>
  3099. </p>
  3100. <table>
  3101. <thead>
  3102. <tr>
  3103. <th>Field</th>
  3104. <th>Description</th>
  3105. </tr>
  3106. </thead>
  3107. <tbody>
  3108. <tr>
  3109. <td>
  3110. <code>clientCert</code></br>
  3111. <em>
  3112. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3113. External Secrets meta/v1.SecretKeySelector
  3114. </a>
  3115. </em>
  3116. </td>
  3117. <td>
  3118. </td>
  3119. </tr>
  3120. <tr>
  3121. <td>
  3122. <code>clientKey</code></br>
  3123. <em>
  3124. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3125. External Secrets meta/v1.SecretKeySelector
  3126. </a>
  3127. </em>
  3128. </td>
  3129. <td>
  3130. </td>
  3131. </tr>
  3132. </tbody>
  3133. </table>
  3134. <h3 id="external-secrets.io/v1.ChefAuth">ChefAuth
  3135. </h3>
  3136. <p>
  3137. (<em>Appears on:</em>
  3138. <a href="#external-secrets.io/v1.ChefProvider">ChefProvider</a>)
  3139. </p>
  3140. <p>
  3141. <p>ChefAuth contains a secretRef for credentials.</p>
  3142. </p>
  3143. <table>
  3144. <thead>
  3145. <tr>
  3146. <th>Field</th>
  3147. <th>Description</th>
  3148. </tr>
  3149. </thead>
  3150. <tbody>
  3151. <tr>
  3152. <td>
  3153. <code>secretRef</code></br>
  3154. <em>
  3155. <a href="#external-secrets.io/v1.ChefAuthSecretRef">
  3156. ChefAuthSecretRef
  3157. </a>
  3158. </em>
  3159. </td>
  3160. <td>
  3161. </td>
  3162. </tr>
  3163. </tbody>
  3164. </table>
  3165. <h3 id="external-secrets.io/v1.ChefAuthSecretRef">ChefAuthSecretRef
  3166. </h3>
  3167. <p>
  3168. (<em>Appears on:</em>
  3169. <a href="#external-secrets.io/v1.ChefAuth">ChefAuth</a>)
  3170. </p>
  3171. <p>
  3172. <p>ChefAuthSecretRef holds secret references for chef server login credentials.</p>
  3173. </p>
  3174. <table>
  3175. <thead>
  3176. <tr>
  3177. <th>Field</th>
  3178. <th>Description</th>
  3179. </tr>
  3180. </thead>
  3181. <tbody>
  3182. <tr>
  3183. <td>
  3184. <code>privateKeySecretRef</code></br>
  3185. <em>
  3186. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3187. External Secrets meta/v1.SecretKeySelector
  3188. </a>
  3189. </em>
  3190. </td>
  3191. <td>
  3192. <p>SecretKey is the Signing Key in PEM format, used for authentication.</p>
  3193. </td>
  3194. </tr>
  3195. </tbody>
  3196. </table>
  3197. <h3 id="external-secrets.io/v1.ChefProvider">ChefProvider
  3198. </h3>
  3199. <p>
  3200. (<em>Appears on:</em>
  3201. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  3202. </p>
  3203. <p>
  3204. <p>ChefProvider configures a store to sync secrets using basic chef server connection credentials.</p>
  3205. </p>
  3206. <table>
  3207. <thead>
  3208. <tr>
  3209. <th>Field</th>
  3210. <th>Description</th>
  3211. </tr>
  3212. </thead>
  3213. <tbody>
  3214. <tr>
  3215. <td>
  3216. <code>auth</code></br>
  3217. <em>
  3218. <a href="#external-secrets.io/v1.ChefAuth">
  3219. ChefAuth
  3220. </a>
  3221. </em>
  3222. </td>
  3223. <td>
  3224. <p>Auth defines the information necessary to authenticate against chef Server</p>
  3225. </td>
  3226. </tr>
  3227. <tr>
  3228. <td>
  3229. <code>username</code></br>
  3230. <em>
  3231. string
  3232. </em>
  3233. </td>
  3234. <td>
  3235. <p>UserName should be the user ID on the chef server</p>
  3236. </td>
  3237. </tr>
  3238. <tr>
  3239. <td>
  3240. <code>serverUrl</code></br>
  3241. <em>
  3242. string
  3243. </em>
  3244. </td>
  3245. <td>
  3246. <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>
  3247. </td>
  3248. </tr>
  3249. </tbody>
  3250. </table>
  3251. <h3 id="external-secrets.io/v1.CloudruSMProvider">CloudruSMProvider
  3252. </h3>
  3253. <p>
  3254. (<em>Appears on:</em>
  3255. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  3256. </p>
  3257. <p>
  3258. <p>CloudruSMProvider configures a store to sync secrets using the Cloud.ru Secret Manager provider.</p>
  3259. </p>
  3260. <table>
  3261. <thead>
  3262. <tr>
  3263. <th>Field</th>
  3264. <th>Description</th>
  3265. </tr>
  3266. </thead>
  3267. <tbody>
  3268. <tr>
  3269. <td>
  3270. <code>auth</code></br>
  3271. <em>
  3272. <a href="#external-secrets.io/v1.CSMAuth">
  3273. CSMAuth
  3274. </a>
  3275. </em>
  3276. </td>
  3277. <td>
  3278. </td>
  3279. </tr>
  3280. <tr>
  3281. <td>
  3282. <code>projectID</code></br>
  3283. <em>
  3284. string
  3285. </em>
  3286. </td>
  3287. <td>
  3288. <p>ProjectID is the project, which the secrets are stored in.</p>
  3289. </td>
  3290. </tr>
  3291. </tbody>
  3292. </table>
  3293. <h3 id="external-secrets.io/v1.ClusterExternalSecret">ClusterExternalSecret
  3294. </h3>
  3295. <p>
  3296. <p>ClusterExternalSecret is the Schema for the clusterexternalsecrets API.</p>
  3297. </p>
  3298. <table>
  3299. <thead>
  3300. <tr>
  3301. <th>Field</th>
  3302. <th>Description</th>
  3303. </tr>
  3304. </thead>
  3305. <tbody>
  3306. <tr>
  3307. <td>
  3308. <code>metadata</code></br>
  3309. <em>
  3310. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  3311. Kubernetes meta/v1.ObjectMeta
  3312. </a>
  3313. </em>
  3314. </td>
  3315. <td>
  3316. Refer to the Kubernetes API documentation for the fields of the
  3317. <code>metadata</code> field.
  3318. </td>
  3319. </tr>
  3320. <tr>
  3321. <td>
  3322. <code>spec</code></br>
  3323. <em>
  3324. <a href="#external-secrets.io/v1.ClusterExternalSecretSpec">
  3325. ClusterExternalSecretSpec
  3326. </a>
  3327. </em>
  3328. </td>
  3329. <td>
  3330. <br/>
  3331. <br/>
  3332. <table>
  3333. <tr>
  3334. <td>
  3335. <code>externalSecretSpec</code></br>
  3336. <em>
  3337. <a href="#external-secrets.io/v1.ExternalSecretSpec">
  3338. ExternalSecretSpec
  3339. </a>
  3340. </em>
  3341. </td>
  3342. <td>
  3343. <p>The spec for the ExternalSecrets to be created</p>
  3344. </td>
  3345. </tr>
  3346. <tr>
  3347. <td>
  3348. <code>externalSecretName</code></br>
  3349. <em>
  3350. string
  3351. </em>
  3352. </td>
  3353. <td>
  3354. <em>(Optional)</em>
  3355. <p>The name of the external secrets to be created.
  3356. Defaults to the name of the ClusterExternalSecret</p>
  3357. </td>
  3358. </tr>
  3359. <tr>
  3360. <td>
  3361. <code>externalSecretMetadata</code></br>
  3362. <em>
  3363. <a href="#external-secrets.io/v1.ExternalSecretMetadata">
  3364. ExternalSecretMetadata
  3365. </a>
  3366. </em>
  3367. </td>
  3368. <td>
  3369. <em>(Optional)</em>
  3370. <p>The metadata of the external secrets to be created</p>
  3371. </td>
  3372. </tr>
  3373. <tr>
  3374. <td>
  3375. <code>namespaceSelector</code></br>
  3376. <em>
  3377. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  3378. Kubernetes meta/v1.LabelSelector
  3379. </a>
  3380. </em>
  3381. </td>
  3382. <td>
  3383. <em>(Optional)</em>
  3384. <p>The labels to select by to find the Namespaces to create the ExternalSecrets in.
  3385. Deprecated: Use NamespaceSelectors instead.</p>
  3386. </td>
  3387. </tr>
  3388. <tr>
  3389. <td>
  3390. <code>namespaceSelectors</code></br>
  3391. <em>
  3392. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#*k8s.io/apimachinery/pkg/apis/meta/v1.labelselector--">
  3393. []*k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector
  3394. </a>
  3395. </em>
  3396. </td>
  3397. <td>
  3398. <em>(Optional)</em>
  3399. <p>A list of labels to select by to find the Namespaces to create the ExternalSecrets in. The selectors are ORed.</p>
  3400. </td>
  3401. </tr>
  3402. <tr>
  3403. <td>
  3404. <code>namespaces</code></br>
  3405. <em>
  3406. []string
  3407. </em>
  3408. </td>
  3409. <td>
  3410. <em>(Optional)</em>
  3411. <p>Choose namespaces by name. This field is ORed with anything that NamespaceSelectors ends up choosing.
  3412. Deprecated: Use NamespaceSelectors instead.</p>
  3413. </td>
  3414. </tr>
  3415. <tr>
  3416. <td>
  3417. <code>refreshTime</code></br>
  3418. <em>
  3419. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  3420. Kubernetes meta/v1.Duration
  3421. </a>
  3422. </em>
  3423. </td>
  3424. <td>
  3425. <p>The time in which the controller should reconcile its objects and recheck namespaces for labels.</p>
  3426. </td>
  3427. </tr>
  3428. </table>
  3429. </td>
  3430. </tr>
  3431. <tr>
  3432. <td>
  3433. <code>status</code></br>
  3434. <em>
  3435. <a href="#external-secrets.io/v1.ClusterExternalSecretStatus">
  3436. ClusterExternalSecretStatus
  3437. </a>
  3438. </em>
  3439. </td>
  3440. <td>
  3441. </td>
  3442. </tr>
  3443. </tbody>
  3444. </table>
  3445. <h3 id="external-secrets.io/v1.ClusterExternalSecretConditionType">ClusterExternalSecretConditionType
  3446. (<code>string</code> alias)</p></h3>
  3447. <p>
  3448. (<em>Appears on:</em>
  3449. <a href="#external-secrets.io/v1.ClusterExternalSecretStatusCondition">ClusterExternalSecretStatusCondition</a>)
  3450. </p>
  3451. <p>
  3452. </p>
  3453. <table>
  3454. <thead>
  3455. <tr>
  3456. <th>Value</th>
  3457. <th>Description</th>
  3458. </tr>
  3459. </thead>
  3460. <tbody><tr><td><p>&#34;Ready&#34;</p></td>
  3461. <td></td>
  3462. </tr></tbody>
  3463. </table>
  3464. <h3 id="external-secrets.io/v1.ClusterExternalSecretNamespaceFailure">ClusterExternalSecretNamespaceFailure
  3465. </h3>
  3466. <p>
  3467. (<em>Appears on:</em>
  3468. <a href="#external-secrets.io/v1.ClusterExternalSecretStatus">ClusterExternalSecretStatus</a>)
  3469. </p>
  3470. <p>
  3471. <p>ClusterExternalSecretNamespaceFailure represents a failed namespace deployment and it&rsquo;s reason.</p>
  3472. </p>
  3473. <table>
  3474. <thead>
  3475. <tr>
  3476. <th>Field</th>
  3477. <th>Description</th>
  3478. </tr>
  3479. </thead>
  3480. <tbody>
  3481. <tr>
  3482. <td>
  3483. <code>namespace</code></br>
  3484. <em>
  3485. string
  3486. </em>
  3487. </td>
  3488. <td>
  3489. <p>Namespace is the namespace that failed when trying to apply an ExternalSecret</p>
  3490. </td>
  3491. </tr>
  3492. <tr>
  3493. <td>
  3494. <code>reason</code></br>
  3495. <em>
  3496. string
  3497. </em>
  3498. </td>
  3499. <td>
  3500. <em>(Optional)</em>
  3501. <p>Reason is why the ExternalSecret failed to apply to the namespace</p>
  3502. </td>
  3503. </tr>
  3504. </tbody>
  3505. </table>
  3506. <h3 id="external-secrets.io/v1.ClusterExternalSecretSpec">ClusterExternalSecretSpec
  3507. </h3>
  3508. <p>
  3509. (<em>Appears on:</em>
  3510. <a href="#external-secrets.io/v1.ClusterExternalSecret">ClusterExternalSecret</a>)
  3511. </p>
  3512. <p>
  3513. <p>ClusterExternalSecretSpec defines the desired state of ClusterExternalSecret.</p>
  3514. </p>
  3515. <table>
  3516. <thead>
  3517. <tr>
  3518. <th>Field</th>
  3519. <th>Description</th>
  3520. </tr>
  3521. </thead>
  3522. <tbody>
  3523. <tr>
  3524. <td>
  3525. <code>externalSecretSpec</code></br>
  3526. <em>
  3527. <a href="#external-secrets.io/v1.ExternalSecretSpec">
  3528. ExternalSecretSpec
  3529. </a>
  3530. </em>
  3531. </td>
  3532. <td>
  3533. <p>The spec for the ExternalSecrets to be created</p>
  3534. </td>
  3535. </tr>
  3536. <tr>
  3537. <td>
  3538. <code>externalSecretName</code></br>
  3539. <em>
  3540. string
  3541. </em>
  3542. </td>
  3543. <td>
  3544. <em>(Optional)</em>
  3545. <p>The name of the external secrets to be created.
  3546. Defaults to the name of the ClusterExternalSecret</p>
  3547. </td>
  3548. </tr>
  3549. <tr>
  3550. <td>
  3551. <code>externalSecretMetadata</code></br>
  3552. <em>
  3553. <a href="#external-secrets.io/v1.ExternalSecretMetadata">
  3554. ExternalSecretMetadata
  3555. </a>
  3556. </em>
  3557. </td>
  3558. <td>
  3559. <em>(Optional)</em>
  3560. <p>The metadata of the external secrets to be created</p>
  3561. </td>
  3562. </tr>
  3563. <tr>
  3564. <td>
  3565. <code>namespaceSelector</code></br>
  3566. <em>
  3567. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  3568. Kubernetes meta/v1.LabelSelector
  3569. </a>
  3570. </em>
  3571. </td>
  3572. <td>
  3573. <em>(Optional)</em>
  3574. <p>The labels to select by to find the Namespaces to create the ExternalSecrets in.
  3575. Deprecated: Use NamespaceSelectors instead.</p>
  3576. </td>
  3577. </tr>
  3578. <tr>
  3579. <td>
  3580. <code>namespaceSelectors</code></br>
  3581. <em>
  3582. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#*k8s.io/apimachinery/pkg/apis/meta/v1.labelselector--">
  3583. []*k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector
  3584. </a>
  3585. </em>
  3586. </td>
  3587. <td>
  3588. <em>(Optional)</em>
  3589. <p>A list of labels to select by to find the Namespaces to create the ExternalSecrets in. The selectors are ORed.</p>
  3590. </td>
  3591. </tr>
  3592. <tr>
  3593. <td>
  3594. <code>namespaces</code></br>
  3595. <em>
  3596. []string
  3597. </em>
  3598. </td>
  3599. <td>
  3600. <em>(Optional)</em>
  3601. <p>Choose namespaces by name. This field is ORed with anything that NamespaceSelectors ends up choosing.
  3602. Deprecated: Use NamespaceSelectors instead.</p>
  3603. </td>
  3604. </tr>
  3605. <tr>
  3606. <td>
  3607. <code>refreshTime</code></br>
  3608. <em>
  3609. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  3610. Kubernetes meta/v1.Duration
  3611. </a>
  3612. </em>
  3613. </td>
  3614. <td>
  3615. <p>The time in which the controller should reconcile its objects and recheck namespaces for labels.</p>
  3616. </td>
  3617. </tr>
  3618. </tbody>
  3619. </table>
  3620. <h3 id="external-secrets.io/v1.ClusterExternalSecretStatus">ClusterExternalSecretStatus
  3621. </h3>
  3622. <p>
  3623. (<em>Appears on:</em>
  3624. <a href="#external-secrets.io/v1.ClusterExternalSecret">ClusterExternalSecret</a>)
  3625. </p>
  3626. <p>
  3627. <p>ClusterExternalSecretStatus defines the observed state of ClusterExternalSecret.</p>
  3628. </p>
  3629. <table>
  3630. <thead>
  3631. <tr>
  3632. <th>Field</th>
  3633. <th>Description</th>
  3634. </tr>
  3635. </thead>
  3636. <tbody>
  3637. <tr>
  3638. <td>
  3639. <code>externalSecretName</code></br>
  3640. <em>
  3641. string
  3642. </em>
  3643. </td>
  3644. <td>
  3645. <p>ExternalSecretName is the name of the ExternalSecrets created by the ClusterExternalSecret</p>
  3646. </td>
  3647. </tr>
  3648. <tr>
  3649. <td>
  3650. <code>failedNamespaces</code></br>
  3651. <em>
  3652. <a href="#external-secrets.io/v1.ClusterExternalSecretNamespaceFailure">
  3653. []ClusterExternalSecretNamespaceFailure
  3654. </a>
  3655. </em>
  3656. </td>
  3657. <td>
  3658. <em>(Optional)</em>
  3659. <p>Failed namespaces are the namespaces that failed to apply an ExternalSecret</p>
  3660. </td>
  3661. </tr>
  3662. <tr>
  3663. <td>
  3664. <code>provisionedNamespaces</code></br>
  3665. <em>
  3666. []string
  3667. </em>
  3668. </td>
  3669. <td>
  3670. <em>(Optional)</em>
  3671. <p>ProvisionedNamespaces are the namespaces where the ClusterExternalSecret has secrets</p>
  3672. </td>
  3673. </tr>
  3674. <tr>
  3675. <td>
  3676. <code>conditions</code></br>
  3677. <em>
  3678. <a href="#external-secrets.io/v1.ClusterExternalSecretStatusCondition">
  3679. []ClusterExternalSecretStatusCondition
  3680. </a>
  3681. </em>
  3682. </td>
  3683. <td>
  3684. <em>(Optional)</em>
  3685. </td>
  3686. </tr>
  3687. </tbody>
  3688. </table>
  3689. <h3 id="external-secrets.io/v1.ClusterExternalSecretStatusCondition">ClusterExternalSecretStatusCondition
  3690. </h3>
  3691. <p>
  3692. (<em>Appears on:</em>
  3693. <a href="#external-secrets.io/v1.ClusterExternalSecretStatus">ClusterExternalSecretStatus</a>)
  3694. </p>
  3695. <p>
  3696. </p>
  3697. <table>
  3698. <thead>
  3699. <tr>
  3700. <th>Field</th>
  3701. <th>Description</th>
  3702. </tr>
  3703. </thead>
  3704. <tbody>
  3705. <tr>
  3706. <td>
  3707. <code>type</code></br>
  3708. <em>
  3709. <a href="#external-secrets.io/v1.ClusterExternalSecretConditionType">
  3710. ClusterExternalSecretConditionType
  3711. </a>
  3712. </em>
  3713. </td>
  3714. <td>
  3715. </td>
  3716. </tr>
  3717. <tr>
  3718. <td>
  3719. <code>status</code></br>
  3720. <em>
  3721. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  3722. Kubernetes core/v1.ConditionStatus
  3723. </a>
  3724. </em>
  3725. </td>
  3726. <td>
  3727. </td>
  3728. </tr>
  3729. <tr>
  3730. <td>
  3731. <code>message</code></br>
  3732. <em>
  3733. string
  3734. </em>
  3735. </td>
  3736. <td>
  3737. <em>(Optional)</em>
  3738. </td>
  3739. </tr>
  3740. </tbody>
  3741. </table>
  3742. <h3 id="external-secrets.io/v1.ClusterSecretStore">ClusterSecretStore
  3743. </h3>
  3744. <p>
  3745. <p>ClusterSecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  3746. </p>
  3747. <table>
  3748. <thead>
  3749. <tr>
  3750. <th>Field</th>
  3751. <th>Description</th>
  3752. </tr>
  3753. </thead>
  3754. <tbody>
  3755. <tr>
  3756. <td>
  3757. <code>metadata</code></br>
  3758. <em>
  3759. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  3760. Kubernetes meta/v1.ObjectMeta
  3761. </a>
  3762. </em>
  3763. </td>
  3764. <td>
  3765. Refer to the Kubernetes API documentation for the fields of the
  3766. <code>metadata</code> field.
  3767. </td>
  3768. </tr>
  3769. <tr>
  3770. <td>
  3771. <code>spec</code></br>
  3772. <em>
  3773. <a href="#external-secrets.io/v1.SecretStoreSpec">
  3774. SecretStoreSpec
  3775. </a>
  3776. </em>
  3777. </td>
  3778. <td>
  3779. <br/>
  3780. <br/>
  3781. <table>
  3782. <tr>
  3783. <td>
  3784. <code>controller</code></br>
  3785. <em>
  3786. string
  3787. </em>
  3788. </td>
  3789. <td>
  3790. <em>(Optional)</em>
  3791. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  3792. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  3793. </td>
  3794. </tr>
  3795. <tr>
  3796. <td>
  3797. <code>provider</code></br>
  3798. <em>
  3799. <a href="#external-secrets.io/v1.SecretStoreProvider">
  3800. SecretStoreProvider
  3801. </a>
  3802. </em>
  3803. </td>
  3804. <td>
  3805. <p>Used to configure the provider. Only one provider may be set</p>
  3806. </td>
  3807. </tr>
  3808. <tr>
  3809. <td>
  3810. <code>retrySettings</code></br>
  3811. <em>
  3812. <a href="#external-secrets.io/v1.SecretStoreRetrySettings">
  3813. SecretStoreRetrySettings
  3814. </a>
  3815. </em>
  3816. </td>
  3817. <td>
  3818. <em>(Optional)</em>
  3819. <p>Used to configure http retries if failed</p>
  3820. </td>
  3821. </tr>
  3822. <tr>
  3823. <td>
  3824. <code>refreshInterval</code></br>
  3825. <em>
  3826. int
  3827. </em>
  3828. </td>
  3829. <td>
  3830. <em>(Optional)</em>
  3831. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  3832. </td>
  3833. </tr>
  3834. <tr>
  3835. <td>
  3836. <code>conditions</code></br>
  3837. <em>
  3838. <a href="#external-secrets.io/v1.ClusterSecretStoreCondition">
  3839. []ClusterSecretStoreCondition
  3840. </a>
  3841. </em>
  3842. </td>
  3843. <td>
  3844. <em>(Optional)</em>
  3845. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  3846. </td>
  3847. </tr>
  3848. </table>
  3849. </td>
  3850. </tr>
  3851. <tr>
  3852. <td>
  3853. <code>status</code></br>
  3854. <em>
  3855. <a href="#external-secrets.io/v1.SecretStoreStatus">
  3856. SecretStoreStatus
  3857. </a>
  3858. </em>
  3859. </td>
  3860. <td>
  3861. </td>
  3862. </tr>
  3863. </tbody>
  3864. </table>
  3865. <h3 id="external-secrets.io/v1.ClusterSecretStoreCondition">ClusterSecretStoreCondition
  3866. </h3>
  3867. <p>
  3868. (<em>Appears on:</em>
  3869. <a href="#external-secrets.io/v1.SecretStoreSpec">SecretStoreSpec</a>)
  3870. </p>
  3871. <p>
  3872. <p>ClusterSecretStoreCondition describes a condition by which to choose namespaces to process ExternalSecrets in
  3873. for a ClusterSecretStore instance.</p>
  3874. </p>
  3875. <table>
  3876. <thead>
  3877. <tr>
  3878. <th>Field</th>
  3879. <th>Description</th>
  3880. </tr>
  3881. </thead>
  3882. <tbody>
  3883. <tr>
  3884. <td>
  3885. <code>namespaceSelector</code></br>
  3886. <em>
  3887. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  3888. Kubernetes meta/v1.LabelSelector
  3889. </a>
  3890. </em>
  3891. </td>
  3892. <td>
  3893. <em>(Optional)</em>
  3894. <p>Choose namespace using a labelSelector</p>
  3895. </td>
  3896. </tr>
  3897. <tr>
  3898. <td>
  3899. <code>namespaces</code></br>
  3900. <em>
  3901. []string
  3902. </em>
  3903. </td>
  3904. <td>
  3905. <em>(Optional)</em>
  3906. <p>Choose namespaces by name</p>
  3907. </td>
  3908. </tr>
  3909. <tr>
  3910. <td>
  3911. <code>namespaceRegexes</code></br>
  3912. <em>
  3913. []string
  3914. </em>
  3915. </td>
  3916. <td>
  3917. <em>(Optional)</em>
  3918. <p>Choose namespaces by using regex matching</p>
  3919. </td>
  3920. </tr>
  3921. </tbody>
  3922. </table>
  3923. <h3 id="external-secrets.io/v1.ConfigMapReference">ConfigMapReference
  3924. </h3>
  3925. <p>
  3926. (<em>Appears on:</em>
  3927. <a href="#external-secrets.io/v1.GCPWorkloadIdentityFederation">GCPWorkloadIdentityFederation</a>)
  3928. </p>
  3929. <p>
  3930. <p>ConfigMapReference holds the details of a configmap.</p>
  3931. </p>
  3932. <table>
  3933. <thead>
  3934. <tr>
  3935. <th>Field</th>
  3936. <th>Description</th>
  3937. </tr>
  3938. </thead>
  3939. <tbody>
  3940. <tr>
  3941. <td>
  3942. <code>name</code></br>
  3943. <em>
  3944. string
  3945. </em>
  3946. </td>
  3947. <td>
  3948. <p>name of the configmap.</p>
  3949. </td>
  3950. </tr>
  3951. <tr>
  3952. <td>
  3953. <code>namespace</code></br>
  3954. <em>
  3955. string
  3956. </em>
  3957. </td>
  3958. <td>
  3959. <p>namespace in which the configmap exists. If empty, configmap will looked up in local namespace.</p>
  3960. </td>
  3961. </tr>
  3962. <tr>
  3963. <td>
  3964. <code>key</code></br>
  3965. <em>
  3966. string
  3967. </em>
  3968. </td>
  3969. <td>
  3970. <p>key name holding the external account credential config.</p>
  3971. </td>
  3972. </tr>
  3973. </tbody>
  3974. </table>
  3975. <h3 id="external-secrets.io/v1.ConjurAPIKey">ConjurAPIKey
  3976. </h3>
  3977. <p>
  3978. (<em>Appears on:</em>
  3979. <a href="#external-secrets.io/v1.ConjurAuth">ConjurAuth</a>)
  3980. </p>
  3981. <p>
  3982. </p>
  3983. <table>
  3984. <thead>
  3985. <tr>
  3986. <th>Field</th>
  3987. <th>Description</th>
  3988. </tr>
  3989. </thead>
  3990. <tbody>
  3991. <tr>
  3992. <td>
  3993. <code>account</code></br>
  3994. <em>
  3995. string
  3996. </em>
  3997. </td>
  3998. <td>
  3999. <p>Account is the Conjur organization account name.</p>
  4000. </td>
  4001. </tr>
  4002. <tr>
  4003. <td>
  4004. <code>userRef</code></br>
  4005. <em>
  4006. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4007. External Secrets meta/v1.SecretKeySelector
  4008. </a>
  4009. </em>
  4010. </td>
  4011. <td>
  4012. <p>A reference to a specific &lsquo;key&rsquo; containing the Conjur username
  4013. within a Secret resource. In some instances, <code>key</code> is a required field.</p>
  4014. </td>
  4015. </tr>
  4016. <tr>
  4017. <td>
  4018. <code>apiKeyRef</code></br>
  4019. <em>
  4020. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4021. External Secrets meta/v1.SecretKeySelector
  4022. </a>
  4023. </em>
  4024. </td>
  4025. <td>
  4026. <p>A reference to a specific &lsquo;key&rsquo; containing the Conjur API key
  4027. within a Secret resource. In some instances, <code>key</code> is a required field.</p>
  4028. </td>
  4029. </tr>
  4030. </tbody>
  4031. </table>
  4032. <h3 id="external-secrets.io/v1.ConjurAuth">ConjurAuth
  4033. </h3>
  4034. <p>
  4035. (<em>Appears on:</em>
  4036. <a href="#external-secrets.io/v1.ConjurProvider">ConjurProvider</a>)
  4037. </p>
  4038. <p>
  4039. </p>
  4040. <table>
  4041. <thead>
  4042. <tr>
  4043. <th>Field</th>
  4044. <th>Description</th>
  4045. </tr>
  4046. </thead>
  4047. <tbody>
  4048. <tr>
  4049. <td>
  4050. <code>apikey</code></br>
  4051. <em>
  4052. <a href="#external-secrets.io/v1.ConjurAPIKey">
  4053. ConjurAPIKey
  4054. </a>
  4055. </em>
  4056. </td>
  4057. <td>
  4058. <em>(Optional)</em>
  4059. <p>Authenticates with Conjur using an API key.</p>
  4060. </td>
  4061. </tr>
  4062. <tr>
  4063. <td>
  4064. <code>jwt</code></br>
  4065. <em>
  4066. <a href="#external-secrets.io/v1.ConjurJWT">
  4067. ConjurJWT
  4068. </a>
  4069. </em>
  4070. </td>
  4071. <td>
  4072. <em>(Optional)</em>
  4073. <p>Jwt enables JWT authentication using Kubernetes service account tokens.</p>
  4074. </td>
  4075. </tr>
  4076. </tbody>
  4077. </table>
  4078. <h3 id="external-secrets.io/v1.ConjurJWT">ConjurJWT
  4079. </h3>
  4080. <p>
  4081. (<em>Appears on:</em>
  4082. <a href="#external-secrets.io/v1.ConjurAuth">ConjurAuth</a>)
  4083. </p>
  4084. <p>
  4085. </p>
  4086. <table>
  4087. <thead>
  4088. <tr>
  4089. <th>Field</th>
  4090. <th>Description</th>
  4091. </tr>
  4092. </thead>
  4093. <tbody>
  4094. <tr>
  4095. <td>
  4096. <code>account</code></br>
  4097. <em>
  4098. string
  4099. </em>
  4100. </td>
  4101. <td>
  4102. <p>Account is the Conjur organization account name.</p>
  4103. </td>
  4104. </tr>
  4105. <tr>
  4106. <td>
  4107. <code>serviceID</code></br>
  4108. <em>
  4109. string
  4110. </em>
  4111. </td>
  4112. <td>
  4113. <p>The conjur authn jwt webservice id</p>
  4114. </td>
  4115. </tr>
  4116. <tr>
  4117. <td>
  4118. <code>hostId</code></br>
  4119. <em>
  4120. string
  4121. </em>
  4122. </td>
  4123. <td>
  4124. <em>(Optional)</em>
  4125. <p>Optional HostID for JWT authentication. This may be used depending
  4126. on how the Conjur JWT authenticator policy is configured.</p>
  4127. </td>
  4128. </tr>
  4129. <tr>
  4130. <td>
  4131. <code>secretRef</code></br>
  4132. <em>
  4133. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4134. External Secrets meta/v1.SecretKeySelector
  4135. </a>
  4136. </em>
  4137. </td>
  4138. <td>
  4139. <em>(Optional)</em>
  4140. <p>Optional SecretRef that refers to a key in a Secret resource containing JWT token to
  4141. authenticate with Conjur using the JWT authentication method.</p>
  4142. </td>
  4143. </tr>
  4144. <tr>
  4145. <td>
  4146. <code>serviceAccountRef</code></br>
  4147. <em>
  4148. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  4149. External Secrets meta/v1.ServiceAccountSelector
  4150. </a>
  4151. </em>
  4152. </td>
  4153. <td>
  4154. <em>(Optional)</em>
  4155. <p>Optional ServiceAccountRef specifies the Kubernetes service account for which to request
  4156. a token for with the <code>TokenRequest</code> API.</p>
  4157. </td>
  4158. </tr>
  4159. </tbody>
  4160. </table>
  4161. <h3 id="external-secrets.io/v1.ConjurProvider">ConjurProvider
  4162. </h3>
  4163. <p>
  4164. (<em>Appears on:</em>
  4165. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  4166. </p>
  4167. <p>
  4168. </p>
  4169. <table>
  4170. <thead>
  4171. <tr>
  4172. <th>Field</th>
  4173. <th>Description</th>
  4174. </tr>
  4175. </thead>
  4176. <tbody>
  4177. <tr>
  4178. <td>
  4179. <code>url</code></br>
  4180. <em>
  4181. string
  4182. </em>
  4183. </td>
  4184. <td>
  4185. <p>URL is the endpoint of the Conjur instance.</p>
  4186. </td>
  4187. </tr>
  4188. <tr>
  4189. <td>
  4190. <code>caBundle</code></br>
  4191. <em>
  4192. string
  4193. </em>
  4194. </td>
  4195. <td>
  4196. <em>(Optional)</em>
  4197. <p>CABundle is a PEM encoded CA bundle that will be used to validate the Conjur server certificate.</p>
  4198. </td>
  4199. </tr>
  4200. <tr>
  4201. <td>
  4202. <code>caProvider</code></br>
  4203. <em>
  4204. <a href="#external-secrets.io/v1.CAProvider">
  4205. CAProvider
  4206. </a>
  4207. </em>
  4208. </td>
  4209. <td>
  4210. <em>(Optional)</em>
  4211. <p>Used to provide custom certificate authority (CA) certificates
  4212. for a secret store. The CAProvider points to a Secret or ConfigMap resource
  4213. that contains a PEM-encoded certificate.</p>
  4214. </td>
  4215. </tr>
  4216. <tr>
  4217. <td>
  4218. <code>auth</code></br>
  4219. <em>
  4220. <a href="#external-secrets.io/v1.ConjurAuth">
  4221. ConjurAuth
  4222. </a>
  4223. </em>
  4224. </td>
  4225. <td>
  4226. <p>Defines authentication settings for connecting to Conjur.</p>
  4227. </td>
  4228. </tr>
  4229. </tbody>
  4230. </table>
  4231. <h3 id="external-secrets.io/v1.DelineaProvider">DelineaProvider
  4232. </h3>
  4233. <p>
  4234. (<em>Appears on:</em>
  4235. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  4236. </p>
  4237. <p>
  4238. <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>
  4239. </p>
  4240. <table>
  4241. <thead>
  4242. <tr>
  4243. <th>Field</th>
  4244. <th>Description</th>
  4245. </tr>
  4246. </thead>
  4247. <tbody>
  4248. <tr>
  4249. <td>
  4250. <code>clientId</code></br>
  4251. <em>
  4252. <a href="#external-secrets.io/v1.DelineaProviderSecretRef">
  4253. DelineaProviderSecretRef
  4254. </a>
  4255. </em>
  4256. </td>
  4257. <td>
  4258. <p>ClientID is the non-secret part of the credential.</p>
  4259. </td>
  4260. </tr>
  4261. <tr>
  4262. <td>
  4263. <code>clientSecret</code></br>
  4264. <em>
  4265. <a href="#external-secrets.io/v1.DelineaProviderSecretRef">
  4266. DelineaProviderSecretRef
  4267. </a>
  4268. </em>
  4269. </td>
  4270. <td>
  4271. <p>ClientSecret is the secret part of the credential.</p>
  4272. </td>
  4273. </tr>
  4274. <tr>
  4275. <td>
  4276. <code>tenant</code></br>
  4277. <em>
  4278. string
  4279. </em>
  4280. </td>
  4281. <td>
  4282. <p>Tenant is the chosen hostname / site name.</p>
  4283. </td>
  4284. </tr>
  4285. <tr>
  4286. <td>
  4287. <code>urlTemplate</code></br>
  4288. <em>
  4289. string
  4290. </em>
  4291. </td>
  4292. <td>
  4293. <em>(Optional)</em>
  4294. <p>URLTemplate
  4295. If unset, defaults to &ldquo;https://%s.secretsvaultcloud.%s/v1/%s%s&rdquo;.</p>
  4296. </td>
  4297. </tr>
  4298. <tr>
  4299. <td>
  4300. <code>tld</code></br>
  4301. <em>
  4302. string
  4303. </em>
  4304. </td>
  4305. <td>
  4306. <em>(Optional)</em>
  4307. <p>TLD is based on the server location that was chosen during provisioning.
  4308. If unset, defaults to &ldquo;com&rdquo;.</p>
  4309. </td>
  4310. </tr>
  4311. </tbody>
  4312. </table>
  4313. <h3 id="external-secrets.io/v1.DelineaProviderSecretRef">DelineaProviderSecretRef
  4314. </h3>
  4315. <p>
  4316. (<em>Appears on:</em>
  4317. <a href="#external-secrets.io/v1.DelineaProvider">DelineaProvider</a>)
  4318. </p>
  4319. <p>
  4320. </p>
  4321. <table>
  4322. <thead>
  4323. <tr>
  4324. <th>Field</th>
  4325. <th>Description</th>
  4326. </tr>
  4327. </thead>
  4328. <tbody>
  4329. <tr>
  4330. <td>
  4331. <code>value</code></br>
  4332. <em>
  4333. string
  4334. </em>
  4335. </td>
  4336. <td>
  4337. <em>(Optional)</em>
  4338. <p>Value can be specified directly to set a value without using a secret.</p>
  4339. </td>
  4340. </tr>
  4341. <tr>
  4342. <td>
  4343. <code>secretRef</code></br>
  4344. <em>
  4345. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4346. External Secrets meta/v1.SecretKeySelector
  4347. </a>
  4348. </em>
  4349. </td>
  4350. <td>
  4351. <em>(Optional)</em>
  4352. <p>SecretRef references a key in a secret that will be used as value.</p>
  4353. </td>
  4354. </tr>
  4355. </tbody>
  4356. </table>
  4357. <h3 id="external-secrets.io/v1.Device42Auth">Device42Auth
  4358. </h3>
  4359. <p>
  4360. (<em>Appears on:</em>
  4361. <a href="#external-secrets.io/v1.Device42Provider">Device42Provider</a>)
  4362. </p>
  4363. <p>
  4364. </p>
  4365. <table>
  4366. <thead>
  4367. <tr>
  4368. <th>Field</th>
  4369. <th>Description</th>
  4370. </tr>
  4371. </thead>
  4372. <tbody>
  4373. <tr>
  4374. <td>
  4375. <code>secretRef</code></br>
  4376. <em>
  4377. <a href="#external-secrets.io/v1.Device42SecretRef">
  4378. Device42SecretRef
  4379. </a>
  4380. </em>
  4381. </td>
  4382. <td>
  4383. </td>
  4384. </tr>
  4385. </tbody>
  4386. </table>
  4387. <h3 id="external-secrets.io/v1.Device42Provider">Device42Provider
  4388. </h3>
  4389. <p>
  4390. (<em>Appears on:</em>
  4391. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  4392. </p>
  4393. <p>
  4394. <p>Device42Provider configures a store to sync secrets with a Device42 instance.</p>
  4395. </p>
  4396. <table>
  4397. <thead>
  4398. <tr>
  4399. <th>Field</th>
  4400. <th>Description</th>
  4401. </tr>
  4402. </thead>
  4403. <tbody>
  4404. <tr>
  4405. <td>
  4406. <code>host</code></br>
  4407. <em>
  4408. string
  4409. </em>
  4410. </td>
  4411. <td>
  4412. <p>URL configures the Device42 instance URL.</p>
  4413. </td>
  4414. </tr>
  4415. <tr>
  4416. <td>
  4417. <code>auth</code></br>
  4418. <em>
  4419. <a href="#external-secrets.io/v1.Device42Auth">
  4420. Device42Auth
  4421. </a>
  4422. </em>
  4423. </td>
  4424. <td>
  4425. <p>Auth configures how secret-manager authenticates with a Device42 instance.</p>
  4426. </td>
  4427. </tr>
  4428. </tbody>
  4429. </table>
  4430. <h3 id="external-secrets.io/v1.Device42SecretRef">Device42SecretRef
  4431. </h3>
  4432. <p>
  4433. (<em>Appears on:</em>
  4434. <a href="#external-secrets.io/v1.Device42Auth">Device42Auth</a>)
  4435. </p>
  4436. <p>
  4437. </p>
  4438. <table>
  4439. <thead>
  4440. <tr>
  4441. <th>Field</th>
  4442. <th>Description</th>
  4443. </tr>
  4444. </thead>
  4445. <tbody>
  4446. <tr>
  4447. <td>
  4448. <code>credentials</code></br>
  4449. <em>
  4450. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4451. External Secrets meta/v1.SecretKeySelector
  4452. </a>
  4453. </em>
  4454. </td>
  4455. <td>
  4456. <em>(Optional)</em>
  4457. <p>Username / Password is used for authentication.</p>
  4458. </td>
  4459. </tr>
  4460. </tbody>
  4461. </table>
  4462. <h3 id="external-secrets.io/v1.DopplerAuth">DopplerAuth
  4463. </h3>
  4464. <p>
  4465. (<em>Appears on:</em>
  4466. <a href="#external-secrets.io/v1.DopplerProvider">DopplerProvider</a>)
  4467. </p>
  4468. <p>
  4469. </p>
  4470. <table>
  4471. <thead>
  4472. <tr>
  4473. <th>Field</th>
  4474. <th>Description</th>
  4475. </tr>
  4476. </thead>
  4477. <tbody>
  4478. <tr>
  4479. <td>
  4480. <code>secretRef</code></br>
  4481. <em>
  4482. <a href="#external-secrets.io/v1.DopplerAuthSecretRef">
  4483. DopplerAuthSecretRef
  4484. </a>
  4485. </em>
  4486. </td>
  4487. <td>
  4488. </td>
  4489. </tr>
  4490. </tbody>
  4491. </table>
  4492. <h3 id="external-secrets.io/v1.DopplerAuthSecretRef">DopplerAuthSecretRef
  4493. </h3>
  4494. <p>
  4495. (<em>Appears on:</em>
  4496. <a href="#external-secrets.io/v1.DopplerAuth">DopplerAuth</a>)
  4497. </p>
  4498. <p>
  4499. </p>
  4500. <table>
  4501. <thead>
  4502. <tr>
  4503. <th>Field</th>
  4504. <th>Description</th>
  4505. </tr>
  4506. </thead>
  4507. <tbody>
  4508. <tr>
  4509. <td>
  4510. <code>dopplerToken</code></br>
  4511. <em>
  4512. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4513. External Secrets meta/v1.SecretKeySelector
  4514. </a>
  4515. </em>
  4516. </td>
  4517. <td>
  4518. <p>The DopplerToken is used for authentication.
  4519. See <a href="https://docs.doppler.com/reference/api#authentication">https://docs.doppler.com/reference/api#authentication</a> for auth token types.
  4520. The Key attribute defaults to dopplerToken if not specified.</p>
  4521. </td>
  4522. </tr>
  4523. </tbody>
  4524. </table>
  4525. <h3 id="external-secrets.io/v1.DopplerProvider">DopplerProvider
  4526. </h3>
  4527. <p>
  4528. (<em>Appears on:</em>
  4529. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  4530. </p>
  4531. <p>
  4532. <p>DopplerProvider configures a store to sync secrets using the Doppler provider.
  4533. Project and Config are required if not using a Service Token.</p>
  4534. </p>
  4535. <table>
  4536. <thead>
  4537. <tr>
  4538. <th>Field</th>
  4539. <th>Description</th>
  4540. </tr>
  4541. </thead>
  4542. <tbody>
  4543. <tr>
  4544. <td>
  4545. <code>auth</code></br>
  4546. <em>
  4547. <a href="#external-secrets.io/v1.DopplerAuth">
  4548. DopplerAuth
  4549. </a>
  4550. </em>
  4551. </td>
  4552. <td>
  4553. <p>Auth configures how the Operator authenticates with the Doppler API</p>
  4554. </td>
  4555. </tr>
  4556. <tr>
  4557. <td>
  4558. <code>project</code></br>
  4559. <em>
  4560. string
  4561. </em>
  4562. </td>
  4563. <td>
  4564. <em>(Optional)</em>
  4565. <p>Doppler project (required if not using a Service Token)</p>
  4566. </td>
  4567. </tr>
  4568. <tr>
  4569. <td>
  4570. <code>config</code></br>
  4571. <em>
  4572. string
  4573. </em>
  4574. </td>
  4575. <td>
  4576. <em>(Optional)</em>
  4577. <p>Doppler config (required if not using a Service Token)</p>
  4578. </td>
  4579. </tr>
  4580. <tr>
  4581. <td>
  4582. <code>nameTransformer</code></br>
  4583. <em>
  4584. string
  4585. </em>
  4586. </td>
  4587. <td>
  4588. <em>(Optional)</em>
  4589. <p>Environment variable compatible name transforms that change secret names to a different format</p>
  4590. </td>
  4591. </tr>
  4592. <tr>
  4593. <td>
  4594. <code>format</code></br>
  4595. <em>
  4596. string
  4597. </em>
  4598. </td>
  4599. <td>
  4600. <em>(Optional)</em>
  4601. <p>Format enables the downloading of secrets as a file (string)</p>
  4602. </td>
  4603. </tr>
  4604. </tbody>
  4605. </table>
  4606. <h3 id="external-secrets.io/v1.ExternalSecret">ExternalSecret
  4607. </h3>
  4608. <p>
  4609. <p>ExternalSecret is the Schema for the external-secrets API.</p>
  4610. </p>
  4611. <table>
  4612. <thead>
  4613. <tr>
  4614. <th>Field</th>
  4615. <th>Description</th>
  4616. </tr>
  4617. </thead>
  4618. <tbody>
  4619. <tr>
  4620. <td>
  4621. <code>metadata</code></br>
  4622. <em>
  4623. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  4624. Kubernetes meta/v1.ObjectMeta
  4625. </a>
  4626. </em>
  4627. </td>
  4628. <td>
  4629. Refer to the Kubernetes API documentation for the fields of the
  4630. <code>metadata</code> field.
  4631. </td>
  4632. </tr>
  4633. <tr>
  4634. <td>
  4635. <code>spec</code></br>
  4636. <em>
  4637. <a href="#external-secrets.io/v1.ExternalSecretSpec">
  4638. ExternalSecretSpec
  4639. </a>
  4640. </em>
  4641. </td>
  4642. <td>
  4643. <br/>
  4644. <br/>
  4645. <table>
  4646. <tr>
  4647. <td>
  4648. <code>secretStoreRef</code></br>
  4649. <em>
  4650. <a href="#external-secrets.io/v1.SecretStoreRef">
  4651. SecretStoreRef
  4652. </a>
  4653. </em>
  4654. </td>
  4655. <td>
  4656. <em>(Optional)</em>
  4657. </td>
  4658. </tr>
  4659. <tr>
  4660. <td>
  4661. <code>target</code></br>
  4662. <em>
  4663. <a href="#external-secrets.io/v1.ExternalSecretTarget">
  4664. ExternalSecretTarget
  4665. </a>
  4666. </em>
  4667. </td>
  4668. <td>
  4669. <em>(Optional)</em>
  4670. </td>
  4671. </tr>
  4672. <tr>
  4673. <td>
  4674. <code>refreshPolicy</code></br>
  4675. <em>
  4676. <a href="#external-secrets.io/v1.ExternalSecretRefreshPolicy">
  4677. ExternalSecretRefreshPolicy
  4678. </a>
  4679. </em>
  4680. </td>
  4681. <td>
  4682. <em>(Optional)</em>
  4683. <p>RefreshPolicy determines how the ExternalSecret should be refreshed:
  4684. - CreatedOnce: Creates the Secret only if it does not exist and does not update it thereafter
  4685. - Periodic: Synchronizes the Secret from the external source at regular intervals specified by refreshInterval.
  4686. No periodic updates occur if refreshInterval is 0.
  4687. - OnChange: Only synchronizes the Secret when the ExternalSecret&rsquo;s metadata or specification changes</p>
  4688. </td>
  4689. </tr>
  4690. <tr>
  4691. <td>
  4692. <code>refreshInterval</code></br>
  4693. <em>
  4694. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  4695. Kubernetes meta/v1.Duration
  4696. </a>
  4697. </em>
  4698. </td>
  4699. <td>
  4700. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider,
  4701. specified as Golang Duration strings.
  4702. 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;
  4703. Example values: &ldquo;1h&rdquo;, &ldquo;2h30m&rdquo;, &ldquo;10s&rdquo;
  4704. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  4705. </td>
  4706. </tr>
  4707. <tr>
  4708. <td>
  4709. <code>data</code></br>
  4710. <em>
  4711. <a href="#external-secrets.io/v1.ExternalSecretData">
  4712. []ExternalSecretData
  4713. </a>
  4714. </em>
  4715. </td>
  4716. <td>
  4717. <em>(Optional)</em>
  4718. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  4719. </td>
  4720. </tr>
  4721. <tr>
  4722. <td>
  4723. <code>dataFrom</code></br>
  4724. <em>
  4725. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">
  4726. []ExternalSecretDataFromRemoteRef
  4727. </a>
  4728. </em>
  4729. </td>
  4730. <td>
  4731. <em>(Optional)</em>
  4732. <p>DataFrom is used to fetch all properties from a specific Provider data
  4733. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  4734. </td>
  4735. </tr>
  4736. </table>
  4737. </td>
  4738. </tr>
  4739. <tr>
  4740. <td>
  4741. <code>status</code></br>
  4742. <em>
  4743. <a href="#external-secrets.io/v1.ExternalSecretStatus">
  4744. ExternalSecretStatus
  4745. </a>
  4746. </em>
  4747. </td>
  4748. <td>
  4749. </td>
  4750. </tr>
  4751. </tbody>
  4752. </table>
  4753. <h3 id="external-secrets.io/v1.ExternalSecretConditionType">ExternalSecretConditionType
  4754. (<code>string</code> alias)</p></h3>
  4755. <p>
  4756. (<em>Appears on:</em>
  4757. <a href="#external-secrets.io/v1.ExternalSecretStatusCondition">ExternalSecretStatusCondition</a>)
  4758. </p>
  4759. <p>
  4760. </p>
  4761. <table>
  4762. <thead>
  4763. <tr>
  4764. <th>Value</th>
  4765. <th>Description</th>
  4766. </tr>
  4767. </thead>
  4768. <tbody><tr><td><p>&#34;Deleted&#34;</p></td>
  4769. <td></td>
  4770. </tr><tr><td><p>&#34;Ready&#34;</p></td>
  4771. <td></td>
  4772. </tr></tbody>
  4773. </table>
  4774. <h3 id="external-secrets.io/v1.ExternalSecretConversionStrategy">ExternalSecretConversionStrategy
  4775. (<code>string</code> alias)</p></h3>
  4776. <p>
  4777. (<em>Appears on:</em>
  4778. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>,
  4779. <a href="#external-secrets.io/v1.ExternalSecretFind">ExternalSecretFind</a>)
  4780. </p>
  4781. <p>
  4782. </p>
  4783. <table>
  4784. <thead>
  4785. <tr>
  4786. <th>Value</th>
  4787. <th>Description</th>
  4788. </tr>
  4789. </thead>
  4790. <tbody><tr><td><p>&#34;Default&#34;</p></td>
  4791. <td></td>
  4792. </tr><tr><td><p>&#34;Unicode&#34;</p></td>
  4793. <td></td>
  4794. </tr></tbody>
  4795. </table>
  4796. <h3 id="external-secrets.io/v1.ExternalSecretCreationPolicy">ExternalSecretCreationPolicy
  4797. (<code>string</code> alias)</p></h3>
  4798. <p>
  4799. (<em>Appears on:</em>
  4800. <a href="#external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget</a>)
  4801. </p>
  4802. <p>
  4803. <p>ExternalSecretCreationPolicy defines rules on how to create the resulting Secret.</p>
  4804. </p>
  4805. <table>
  4806. <thead>
  4807. <tr>
  4808. <th>Value</th>
  4809. <th>Description</th>
  4810. </tr>
  4811. </thead>
  4812. <tbody><tr><td><p>&#34;Merge&#34;</p></td>
  4813. <td><p>Merge does not create the Secret, but merges the data fields to the Secret.</p>
  4814. </td>
  4815. </tr><tr><td><p>&#34;None&#34;</p></td>
  4816. <td><p>None does not create a Secret (future use with injector).</p>
  4817. </td>
  4818. </tr><tr><td><p>&#34;Orphan&#34;</p></td>
  4819. <td><p>Orphan creates the Secret and does not set the ownerReference.
  4820. I.e. it will be orphaned after the deletion of the ExternalSecret.</p>
  4821. </td>
  4822. </tr><tr><td><p>&#34;Owner&#34;</p></td>
  4823. <td><p>Owner creates the Secret and sets .metadata.ownerReferences to the ExternalSecret resource.</p>
  4824. </td>
  4825. </tr></tbody>
  4826. </table>
  4827. <h3 id="external-secrets.io/v1.ExternalSecretData">ExternalSecretData
  4828. </h3>
  4829. <p>
  4830. (<em>Appears on:</em>
  4831. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>)
  4832. </p>
  4833. <p>
  4834. <p>ExternalSecretData defines the connection between the Kubernetes Secret key (spec.data.<key>) and the Provider data.</p>
  4835. </p>
  4836. <table>
  4837. <thead>
  4838. <tr>
  4839. <th>Field</th>
  4840. <th>Description</th>
  4841. </tr>
  4842. </thead>
  4843. <tbody>
  4844. <tr>
  4845. <td>
  4846. <code>secretKey</code></br>
  4847. <em>
  4848. string
  4849. </em>
  4850. </td>
  4851. <td>
  4852. <p>The key in the Kubernetes Secret to store the value.</p>
  4853. </td>
  4854. </tr>
  4855. <tr>
  4856. <td>
  4857. <code>remoteRef</code></br>
  4858. <em>
  4859. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">
  4860. ExternalSecretDataRemoteRef
  4861. </a>
  4862. </em>
  4863. </td>
  4864. <td>
  4865. <p>RemoteRef points to the remote secret and defines
  4866. which secret (version/property/..) to fetch.</p>
  4867. </td>
  4868. </tr>
  4869. <tr>
  4870. <td>
  4871. <code>sourceRef</code></br>
  4872. <em>
  4873. <a href="#external-secrets.io/v1.StoreSourceRef">
  4874. StoreSourceRef
  4875. </a>
  4876. </em>
  4877. </td>
  4878. <td>
  4879. <p>SourceRef allows you to override the source
  4880. from which the value will be pulled.</p>
  4881. </td>
  4882. </tr>
  4883. </tbody>
  4884. </table>
  4885. <h3 id="external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef
  4886. </h3>
  4887. <p>
  4888. (<em>Appears on:</em>
  4889. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>)
  4890. </p>
  4891. <p>
  4892. </p>
  4893. <table>
  4894. <thead>
  4895. <tr>
  4896. <th>Field</th>
  4897. <th>Description</th>
  4898. </tr>
  4899. </thead>
  4900. <tbody>
  4901. <tr>
  4902. <td>
  4903. <code>extract</code></br>
  4904. <em>
  4905. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">
  4906. ExternalSecretDataRemoteRef
  4907. </a>
  4908. </em>
  4909. </td>
  4910. <td>
  4911. <em>(Optional)</em>
  4912. <p>Used to extract multiple key/value pairs from one secret
  4913. Note: Extract does not support sourceRef.Generator or sourceRef.GeneratorRef.</p>
  4914. </td>
  4915. </tr>
  4916. <tr>
  4917. <td>
  4918. <code>find</code></br>
  4919. <em>
  4920. <a href="#external-secrets.io/v1.ExternalSecretFind">
  4921. ExternalSecretFind
  4922. </a>
  4923. </em>
  4924. </td>
  4925. <td>
  4926. <em>(Optional)</em>
  4927. <p>Used to find secrets based on tags or regular expressions
  4928. Note: Find does not support sourceRef.Generator or sourceRef.GeneratorRef.</p>
  4929. </td>
  4930. </tr>
  4931. <tr>
  4932. <td>
  4933. <code>rewrite</code></br>
  4934. <em>
  4935. <a href="#external-secrets.io/v1.ExternalSecretRewrite">
  4936. []ExternalSecretRewrite
  4937. </a>
  4938. </em>
  4939. </td>
  4940. <td>
  4941. <em>(Optional)</em>
  4942. <p>Used to rewrite secret Keys after getting them from the secret Provider
  4943. Multiple Rewrite operations can be provided. They are applied in a layered order (first to last)</p>
  4944. </td>
  4945. </tr>
  4946. <tr>
  4947. <td>
  4948. <code>sourceRef</code></br>
  4949. <em>
  4950. <a href="#external-secrets.io/v1.StoreGeneratorSourceRef">
  4951. StoreGeneratorSourceRef
  4952. </a>
  4953. </em>
  4954. </td>
  4955. <td>
  4956. <p>SourceRef points to a store or generator
  4957. which contains secret values ready to use.
  4958. Use this in combination with Extract or Find pull values out of
  4959. a specific SecretStore.
  4960. When sourceRef points to a generator Extract or Find is not supported.
  4961. The generator returns a static map of values</p>
  4962. </td>
  4963. </tr>
  4964. </tbody>
  4965. </table>
  4966. <h3 id="external-secrets.io/v1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef
  4967. </h3>
  4968. <p>
  4969. (<em>Appears on:</em>
  4970. <a href="#external-secrets.io/v1.ExternalSecretData">ExternalSecretData</a>,
  4971. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  4972. </p>
  4973. <p>
  4974. <p>ExternalSecretDataRemoteRef defines Provider data location.</p>
  4975. </p>
  4976. <table>
  4977. <thead>
  4978. <tr>
  4979. <th>Field</th>
  4980. <th>Description</th>
  4981. </tr>
  4982. </thead>
  4983. <tbody>
  4984. <tr>
  4985. <td>
  4986. <code>key</code></br>
  4987. <em>
  4988. string
  4989. </em>
  4990. </td>
  4991. <td>
  4992. <p>Key is the key used in the Provider, mandatory</p>
  4993. </td>
  4994. </tr>
  4995. <tr>
  4996. <td>
  4997. <code>metadataPolicy</code></br>
  4998. <em>
  4999. <a href="#external-secrets.io/v1.ExternalSecretMetadataPolicy">
  5000. ExternalSecretMetadataPolicy
  5001. </a>
  5002. </em>
  5003. </td>
  5004. <td>
  5005. <em>(Optional)</em>
  5006. <p>Policy for fetching tags/labels from provider secrets, possible options are Fetch, None. Defaults to None</p>
  5007. </td>
  5008. </tr>
  5009. <tr>
  5010. <td>
  5011. <code>property</code></br>
  5012. <em>
  5013. string
  5014. </em>
  5015. </td>
  5016. <td>
  5017. <em>(Optional)</em>
  5018. <p>Used to select a specific property of the Provider value (if a map), if supported</p>
  5019. </td>
  5020. </tr>
  5021. <tr>
  5022. <td>
  5023. <code>version</code></br>
  5024. <em>
  5025. string
  5026. </em>
  5027. </td>
  5028. <td>
  5029. <em>(Optional)</em>
  5030. <p>Used to select a specific version of the Provider value, if supported</p>
  5031. </td>
  5032. </tr>
  5033. <tr>
  5034. <td>
  5035. <code>conversionStrategy</code></br>
  5036. <em>
  5037. <a href="#external-secrets.io/v1.ExternalSecretConversionStrategy">
  5038. ExternalSecretConversionStrategy
  5039. </a>
  5040. </em>
  5041. </td>
  5042. <td>
  5043. <em>(Optional)</em>
  5044. <p>Used to define a conversion Strategy</p>
  5045. </td>
  5046. </tr>
  5047. <tr>
  5048. <td>
  5049. <code>decodingStrategy</code></br>
  5050. <em>
  5051. <a href="#external-secrets.io/v1.ExternalSecretDecodingStrategy">
  5052. ExternalSecretDecodingStrategy
  5053. </a>
  5054. </em>
  5055. </td>
  5056. <td>
  5057. <em>(Optional)</em>
  5058. <p>Used to define a decoding Strategy</p>
  5059. </td>
  5060. </tr>
  5061. </tbody>
  5062. </table>
  5063. <h3 id="external-secrets.io/v1.ExternalSecretDecodingStrategy">ExternalSecretDecodingStrategy
  5064. (<code>string</code> alias)</p></h3>
  5065. <p>
  5066. (<em>Appears on:</em>
  5067. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>,
  5068. <a href="#external-secrets.io/v1.ExternalSecretFind">ExternalSecretFind</a>)
  5069. </p>
  5070. <p>
  5071. </p>
  5072. <table>
  5073. <thead>
  5074. <tr>
  5075. <th>Value</th>
  5076. <th>Description</th>
  5077. </tr>
  5078. </thead>
  5079. <tbody><tr><td><p>&#34;Auto&#34;</p></td>
  5080. <td></td>
  5081. </tr><tr><td><p>&#34;Base64&#34;</p></td>
  5082. <td></td>
  5083. </tr><tr><td><p>&#34;Base64URL&#34;</p></td>
  5084. <td></td>
  5085. </tr><tr><td><p>&#34;None&#34;</p></td>
  5086. <td></td>
  5087. </tr></tbody>
  5088. </table>
  5089. <h3 id="external-secrets.io/v1.ExternalSecretDeletionPolicy">ExternalSecretDeletionPolicy
  5090. (<code>string</code> alias)</p></h3>
  5091. <p>
  5092. (<em>Appears on:</em>
  5093. <a href="#external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget</a>)
  5094. </p>
  5095. <p>
  5096. <p>ExternalSecretDeletionPolicy defines rules on how to delete the resulting Secret.</p>
  5097. </p>
  5098. <table>
  5099. <thead>
  5100. <tr>
  5101. <th>Value</th>
  5102. <th>Description</th>
  5103. </tr>
  5104. </thead>
  5105. <tbody><tr><td><p>&#34;Delete&#34;</p></td>
  5106. <td><p>Delete deletes the secret if all provider secrets are deleted.
  5107. If a secret gets deleted on the provider side and is not accessible
  5108. anymore this is not considered an error and the ExternalSecret
  5109. does not go into SecretSyncedError status.</p>
  5110. </td>
  5111. </tr><tr><td><p>&#34;Merge&#34;</p></td>
  5112. <td><p>Merge removes keys in the secret, but not the secret itself.
  5113. If a secret gets deleted on the provider side and is not accessible
  5114. anymore this is not considered an error and the ExternalSecret
  5115. does not go into SecretSyncedError status.</p>
  5116. </td>
  5117. </tr><tr><td><p>&#34;Retain&#34;</p></td>
  5118. <td><p>Retain will retain the secret if all provider secrets have been deleted.
  5119. If a provider secret does not exist the ExternalSecret gets into the
  5120. SecretSyncedError status.</p>
  5121. </td>
  5122. </tr></tbody>
  5123. </table>
  5124. <h3 id="external-secrets.io/v1.ExternalSecretFind">ExternalSecretFind
  5125. </h3>
  5126. <p>
  5127. (<em>Appears on:</em>
  5128. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  5129. </p>
  5130. <p>
  5131. </p>
  5132. <table>
  5133. <thead>
  5134. <tr>
  5135. <th>Field</th>
  5136. <th>Description</th>
  5137. </tr>
  5138. </thead>
  5139. <tbody>
  5140. <tr>
  5141. <td>
  5142. <code>path</code></br>
  5143. <em>
  5144. string
  5145. </em>
  5146. </td>
  5147. <td>
  5148. <em>(Optional)</em>
  5149. <p>A root path to start the find operations.</p>
  5150. </td>
  5151. </tr>
  5152. <tr>
  5153. <td>
  5154. <code>name</code></br>
  5155. <em>
  5156. <a href="#external-secrets.io/v1.FindName">
  5157. FindName
  5158. </a>
  5159. </em>
  5160. </td>
  5161. <td>
  5162. <em>(Optional)</em>
  5163. <p>Finds secrets based on the name.</p>
  5164. </td>
  5165. </tr>
  5166. <tr>
  5167. <td>
  5168. <code>tags</code></br>
  5169. <em>
  5170. map[string]string
  5171. </em>
  5172. </td>
  5173. <td>
  5174. <em>(Optional)</em>
  5175. <p>Find secrets based on tags.</p>
  5176. </td>
  5177. </tr>
  5178. <tr>
  5179. <td>
  5180. <code>conversionStrategy</code></br>
  5181. <em>
  5182. <a href="#external-secrets.io/v1.ExternalSecretConversionStrategy">
  5183. ExternalSecretConversionStrategy
  5184. </a>
  5185. </em>
  5186. </td>
  5187. <td>
  5188. <em>(Optional)</em>
  5189. <p>Used to define a conversion Strategy</p>
  5190. </td>
  5191. </tr>
  5192. <tr>
  5193. <td>
  5194. <code>decodingStrategy</code></br>
  5195. <em>
  5196. <a href="#external-secrets.io/v1.ExternalSecretDecodingStrategy">
  5197. ExternalSecretDecodingStrategy
  5198. </a>
  5199. </em>
  5200. </td>
  5201. <td>
  5202. <em>(Optional)</em>
  5203. <p>Used to define a decoding Strategy</p>
  5204. </td>
  5205. </tr>
  5206. </tbody>
  5207. </table>
  5208. <h3 id="external-secrets.io/v1.ExternalSecretMetadata">ExternalSecretMetadata
  5209. </h3>
  5210. <p>
  5211. (<em>Appears on:</em>
  5212. <a href="#external-secrets.io/v1.ClusterExternalSecretSpec">ClusterExternalSecretSpec</a>)
  5213. </p>
  5214. <p>
  5215. <p>ExternalSecretMetadata defines metadata fields for the ExternalSecret generated by the ClusterExternalSecret.</p>
  5216. </p>
  5217. <table>
  5218. <thead>
  5219. <tr>
  5220. <th>Field</th>
  5221. <th>Description</th>
  5222. </tr>
  5223. </thead>
  5224. <tbody>
  5225. <tr>
  5226. <td>
  5227. <code>annotations</code></br>
  5228. <em>
  5229. map[string]string
  5230. </em>
  5231. </td>
  5232. <td>
  5233. <em>(Optional)</em>
  5234. </td>
  5235. </tr>
  5236. <tr>
  5237. <td>
  5238. <code>labels</code></br>
  5239. <em>
  5240. map[string]string
  5241. </em>
  5242. </td>
  5243. <td>
  5244. <em>(Optional)</em>
  5245. </td>
  5246. </tr>
  5247. </tbody>
  5248. </table>
  5249. <h3 id="external-secrets.io/v1.ExternalSecretMetadataPolicy">ExternalSecretMetadataPolicy
  5250. (<code>string</code> alias)</p></h3>
  5251. <p>
  5252. (<em>Appears on:</em>
  5253. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>)
  5254. </p>
  5255. <p>
  5256. </p>
  5257. <table>
  5258. <thead>
  5259. <tr>
  5260. <th>Value</th>
  5261. <th>Description</th>
  5262. </tr>
  5263. </thead>
  5264. <tbody><tr><td><p>&#34;Fetch&#34;</p></td>
  5265. <td></td>
  5266. </tr><tr><td><p>&#34;None&#34;</p></td>
  5267. <td></td>
  5268. </tr></tbody>
  5269. </table>
  5270. <h3 id="external-secrets.io/v1.ExternalSecretRefreshPolicy">ExternalSecretRefreshPolicy
  5271. (<code>string</code> alias)</p></h3>
  5272. <p>
  5273. (<em>Appears on:</em>
  5274. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>)
  5275. </p>
  5276. <p>
  5277. </p>
  5278. <table>
  5279. <thead>
  5280. <tr>
  5281. <th>Value</th>
  5282. <th>Description</th>
  5283. </tr>
  5284. </thead>
  5285. <tbody><tr><td><p>&#34;CreatedOnce&#34;</p></td>
  5286. <td></td>
  5287. </tr><tr><td><p>&#34;OnChange&#34;</p></td>
  5288. <td></td>
  5289. </tr><tr><td><p>&#34;Periodic&#34;</p></td>
  5290. <td></td>
  5291. </tr></tbody>
  5292. </table>
  5293. <h3 id="external-secrets.io/v1.ExternalSecretRewrite">ExternalSecretRewrite
  5294. </h3>
  5295. <p>
  5296. (<em>Appears on:</em>
  5297. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  5298. </p>
  5299. <p>
  5300. </p>
  5301. <table>
  5302. <thead>
  5303. <tr>
  5304. <th>Field</th>
  5305. <th>Description</th>
  5306. </tr>
  5307. </thead>
  5308. <tbody>
  5309. <tr>
  5310. <td>
  5311. <code>merge</code></br>
  5312. <em>
  5313. <a href="#external-secrets.io/v1.ExternalSecretRewriteMerge">
  5314. ExternalSecretRewriteMerge
  5315. </a>
  5316. </em>
  5317. </td>
  5318. <td>
  5319. <em>(Optional)</em>
  5320. <p>Used to merge key/values in one single Secret
  5321. The resulting key will contain all values from the specified secrets</p>
  5322. </td>
  5323. </tr>
  5324. <tr>
  5325. <td>
  5326. <code>regexp</code></br>
  5327. <em>
  5328. <a href="#external-secrets.io/v1.ExternalSecretRewriteRegexp">
  5329. ExternalSecretRewriteRegexp
  5330. </a>
  5331. </em>
  5332. </td>
  5333. <td>
  5334. <em>(Optional)</em>
  5335. <p>Used to rewrite with regular expressions.
  5336. The resulting key will be the output of a regexp.ReplaceAll operation.</p>
  5337. </td>
  5338. </tr>
  5339. <tr>
  5340. <td>
  5341. <code>transform</code></br>
  5342. <em>
  5343. <a href="#external-secrets.io/v1.ExternalSecretRewriteTransform">
  5344. ExternalSecretRewriteTransform
  5345. </a>
  5346. </em>
  5347. </td>
  5348. <td>
  5349. <em>(Optional)</em>
  5350. <p>Used to apply string transformation on the secrets.
  5351. The resulting key will be the output of the template applied by the operation.</p>
  5352. </td>
  5353. </tr>
  5354. </tbody>
  5355. </table>
  5356. <h3 id="external-secrets.io/v1.ExternalSecretRewriteMerge">ExternalSecretRewriteMerge
  5357. </h3>
  5358. <p>
  5359. (<em>Appears on:</em>
  5360. <a href="#external-secrets.io/v1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  5361. </p>
  5362. <p>
  5363. </p>
  5364. <table>
  5365. <thead>
  5366. <tr>
  5367. <th>Field</th>
  5368. <th>Description</th>
  5369. </tr>
  5370. </thead>
  5371. <tbody>
  5372. <tr>
  5373. <td>
  5374. <code>into</code></br>
  5375. <em>
  5376. string
  5377. </em>
  5378. </td>
  5379. <td>
  5380. <em>(Optional)</em>
  5381. <p>Used to define the target key of the merge operation.
  5382. Required if strategy is JSON. Ignored otherwise.</p>
  5383. </td>
  5384. </tr>
  5385. <tr>
  5386. <td>
  5387. <code>priority</code></br>
  5388. <em>
  5389. []string
  5390. </em>
  5391. </td>
  5392. <td>
  5393. <em>(Optional)</em>
  5394. <p>Used to define key priority in conflict resolution.</p>
  5395. </td>
  5396. </tr>
  5397. <tr>
  5398. <td>
  5399. <code>conflictPolicy</code></br>
  5400. <em>
  5401. <a href="#external-secrets.io/v1.ExternalSecretRewriteMergeConflictPolicy">
  5402. ExternalSecretRewriteMergeConflictPolicy
  5403. </a>
  5404. </em>
  5405. </td>
  5406. <td>
  5407. <em>(Optional)</em>
  5408. <p>Used to define the policy to use in conflict resolution.</p>
  5409. </td>
  5410. </tr>
  5411. <tr>
  5412. <td>
  5413. <code>strategy</code></br>
  5414. <em>
  5415. <a href="#external-secrets.io/v1.ExternalSecretRewriteMergeStrategy">
  5416. ExternalSecretRewriteMergeStrategy
  5417. </a>
  5418. </em>
  5419. </td>
  5420. <td>
  5421. <em>(Optional)</em>
  5422. <p>Used to define the strategy to use in the merge operation.</p>
  5423. </td>
  5424. </tr>
  5425. </tbody>
  5426. </table>
  5427. <h3 id="external-secrets.io/v1.ExternalSecretRewriteMergeConflictPolicy">ExternalSecretRewriteMergeConflictPolicy
  5428. (<code>string</code> alias)</p></h3>
  5429. <p>
  5430. (<em>Appears on:</em>
  5431. <a href="#external-secrets.io/v1.ExternalSecretRewriteMerge">ExternalSecretRewriteMerge</a>)
  5432. </p>
  5433. <p>
  5434. </p>
  5435. <table>
  5436. <thead>
  5437. <tr>
  5438. <th>Value</th>
  5439. <th>Description</th>
  5440. </tr>
  5441. </thead>
  5442. <tbody><tr><td><p>&#34;Error&#34;</p></td>
  5443. <td></td>
  5444. </tr><tr><td><p>&#34;Ignore&#34;</p></td>
  5445. <td></td>
  5446. </tr></tbody>
  5447. </table>
  5448. <h3 id="external-secrets.io/v1.ExternalSecretRewriteMergeStrategy">ExternalSecretRewriteMergeStrategy
  5449. (<code>string</code> alias)</p></h3>
  5450. <p>
  5451. (<em>Appears on:</em>
  5452. <a href="#external-secrets.io/v1.ExternalSecretRewriteMerge">ExternalSecretRewriteMerge</a>)
  5453. </p>
  5454. <p>
  5455. </p>
  5456. <table>
  5457. <thead>
  5458. <tr>
  5459. <th>Value</th>
  5460. <th>Description</th>
  5461. </tr>
  5462. </thead>
  5463. <tbody><tr><td><p>&#34;Extract&#34;</p></td>
  5464. <td></td>
  5465. </tr><tr><td><p>&#34;JSON&#34;</p></td>
  5466. <td></td>
  5467. </tr></tbody>
  5468. </table>
  5469. <h3 id="external-secrets.io/v1.ExternalSecretRewriteRegexp">ExternalSecretRewriteRegexp
  5470. </h3>
  5471. <p>
  5472. (<em>Appears on:</em>
  5473. <a href="#external-secrets.io/v1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  5474. </p>
  5475. <p>
  5476. </p>
  5477. <table>
  5478. <thead>
  5479. <tr>
  5480. <th>Field</th>
  5481. <th>Description</th>
  5482. </tr>
  5483. </thead>
  5484. <tbody>
  5485. <tr>
  5486. <td>
  5487. <code>source</code></br>
  5488. <em>
  5489. string
  5490. </em>
  5491. </td>
  5492. <td>
  5493. <p>Used to define the regular expression of a re.Compiler.</p>
  5494. </td>
  5495. </tr>
  5496. <tr>
  5497. <td>
  5498. <code>target</code></br>
  5499. <em>
  5500. string
  5501. </em>
  5502. </td>
  5503. <td>
  5504. <p>Used to define the target pattern of a ReplaceAll operation.</p>
  5505. </td>
  5506. </tr>
  5507. </tbody>
  5508. </table>
  5509. <h3 id="external-secrets.io/v1.ExternalSecretRewriteTransform">ExternalSecretRewriteTransform
  5510. </h3>
  5511. <p>
  5512. (<em>Appears on:</em>
  5513. <a href="#external-secrets.io/v1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  5514. </p>
  5515. <p>
  5516. </p>
  5517. <table>
  5518. <thead>
  5519. <tr>
  5520. <th>Field</th>
  5521. <th>Description</th>
  5522. </tr>
  5523. </thead>
  5524. <tbody>
  5525. <tr>
  5526. <td>
  5527. <code>template</code></br>
  5528. <em>
  5529. string
  5530. </em>
  5531. </td>
  5532. <td>
  5533. <p>Used to define the template to apply on the secret name.
  5534. <code>.value</code> will specify the secret name in the template.</p>
  5535. </td>
  5536. </tr>
  5537. </tbody>
  5538. </table>
  5539. <h3 id="external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec
  5540. </h3>
  5541. <p>
  5542. (<em>Appears on:</em>
  5543. <a href="#external-secrets.io/v1.ClusterExternalSecretSpec">ClusterExternalSecretSpec</a>,
  5544. <a href="#external-secrets.io/v1.ExternalSecret">ExternalSecret</a>)
  5545. </p>
  5546. <p>
  5547. <p>ExternalSecretSpec defines the desired state of ExternalSecret.</p>
  5548. </p>
  5549. <table>
  5550. <thead>
  5551. <tr>
  5552. <th>Field</th>
  5553. <th>Description</th>
  5554. </tr>
  5555. </thead>
  5556. <tbody>
  5557. <tr>
  5558. <td>
  5559. <code>secretStoreRef</code></br>
  5560. <em>
  5561. <a href="#external-secrets.io/v1.SecretStoreRef">
  5562. SecretStoreRef
  5563. </a>
  5564. </em>
  5565. </td>
  5566. <td>
  5567. <em>(Optional)</em>
  5568. </td>
  5569. </tr>
  5570. <tr>
  5571. <td>
  5572. <code>target</code></br>
  5573. <em>
  5574. <a href="#external-secrets.io/v1.ExternalSecretTarget">
  5575. ExternalSecretTarget
  5576. </a>
  5577. </em>
  5578. </td>
  5579. <td>
  5580. <em>(Optional)</em>
  5581. </td>
  5582. </tr>
  5583. <tr>
  5584. <td>
  5585. <code>refreshPolicy</code></br>
  5586. <em>
  5587. <a href="#external-secrets.io/v1.ExternalSecretRefreshPolicy">
  5588. ExternalSecretRefreshPolicy
  5589. </a>
  5590. </em>
  5591. </td>
  5592. <td>
  5593. <em>(Optional)</em>
  5594. <p>RefreshPolicy determines how the ExternalSecret should be refreshed:
  5595. - CreatedOnce: Creates the Secret only if it does not exist and does not update it thereafter
  5596. - Periodic: Synchronizes the Secret from the external source at regular intervals specified by refreshInterval.
  5597. No periodic updates occur if refreshInterval is 0.
  5598. - OnChange: Only synchronizes the Secret when the ExternalSecret&rsquo;s metadata or specification changes</p>
  5599. </td>
  5600. </tr>
  5601. <tr>
  5602. <td>
  5603. <code>refreshInterval</code></br>
  5604. <em>
  5605. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  5606. Kubernetes meta/v1.Duration
  5607. </a>
  5608. </em>
  5609. </td>
  5610. <td>
  5611. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider,
  5612. specified as Golang Duration strings.
  5613. 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;
  5614. Example values: &ldquo;1h&rdquo;, &ldquo;2h30m&rdquo;, &ldquo;10s&rdquo;
  5615. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  5616. </td>
  5617. </tr>
  5618. <tr>
  5619. <td>
  5620. <code>data</code></br>
  5621. <em>
  5622. <a href="#external-secrets.io/v1.ExternalSecretData">
  5623. []ExternalSecretData
  5624. </a>
  5625. </em>
  5626. </td>
  5627. <td>
  5628. <em>(Optional)</em>
  5629. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  5630. </td>
  5631. </tr>
  5632. <tr>
  5633. <td>
  5634. <code>dataFrom</code></br>
  5635. <em>
  5636. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">
  5637. []ExternalSecretDataFromRemoteRef
  5638. </a>
  5639. </em>
  5640. </td>
  5641. <td>
  5642. <em>(Optional)</em>
  5643. <p>DataFrom is used to fetch all properties from a specific Provider data
  5644. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  5645. </td>
  5646. </tr>
  5647. </tbody>
  5648. </table>
  5649. <h3 id="external-secrets.io/v1.ExternalSecretStatus">ExternalSecretStatus
  5650. </h3>
  5651. <p>
  5652. (<em>Appears on:</em>
  5653. <a href="#external-secrets.io/v1.ExternalSecret">ExternalSecret</a>)
  5654. </p>
  5655. <p>
  5656. </p>
  5657. <table>
  5658. <thead>
  5659. <tr>
  5660. <th>Field</th>
  5661. <th>Description</th>
  5662. </tr>
  5663. </thead>
  5664. <tbody>
  5665. <tr>
  5666. <td>
  5667. <code>refreshTime</code></br>
  5668. <em>
  5669. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  5670. Kubernetes meta/v1.Time
  5671. </a>
  5672. </em>
  5673. </td>
  5674. <td>
  5675. <p>refreshTime is the time and date the external secret was fetched and
  5676. the target secret updated</p>
  5677. </td>
  5678. </tr>
  5679. <tr>
  5680. <td>
  5681. <code>syncedResourceVersion</code></br>
  5682. <em>
  5683. string
  5684. </em>
  5685. </td>
  5686. <td>
  5687. <p>SyncedResourceVersion keeps track of the last synced version</p>
  5688. </td>
  5689. </tr>
  5690. <tr>
  5691. <td>
  5692. <code>conditions</code></br>
  5693. <em>
  5694. <a href="#external-secrets.io/v1.ExternalSecretStatusCondition">
  5695. []ExternalSecretStatusCondition
  5696. </a>
  5697. </em>
  5698. </td>
  5699. <td>
  5700. <em>(Optional)</em>
  5701. </td>
  5702. </tr>
  5703. <tr>
  5704. <td>
  5705. <code>binding</code></br>
  5706. <em>
  5707. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#localobjectreference-v1-core">
  5708. Kubernetes core/v1.LocalObjectReference
  5709. </a>
  5710. </em>
  5711. </td>
  5712. <td>
  5713. <p>Binding represents a servicebinding.io Provisioned Service reference to the secret</p>
  5714. </td>
  5715. </tr>
  5716. </tbody>
  5717. </table>
  5718. <h3 id="external-secrets.io/v1.ExternalSecretStatusCondition">ExternalSecretStatusCondition
  5719. </h3>
  5720. <p>
  5721. (<em>Appears on:</em>
  5722. <a href="#external-secrets.io/v1.ExternalSecretStatus">ExternalSecretStatus</a>)
  5723. </p>
  5724. <p>
  5725. </p>
  5726. <table>
  5727. <thead>
  5728. <tr>
  5729. <th>Field</th>
  5730. <th>Description</th>
  5731. </tr>
  5732. </thead>
  5733. <tbody>
  5734. <tr>
  5735. <td>
  5736. <code>type</code></br>
  5737. <em>
  5738. <a href="#external-secrets.io/v1.ExternalSecretConditionType">
  5739. ExternalSecretConditionType
  5740. </a>
  5741. </em>
  5742. </td>
  5743. <td>
  5744. </td>
  5745. </tr>
  5746. <tr>
  5747. <td>
  5748. <code>status</code></br>
  5749. <em>
  5750. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  5751. Kubernetes core/v1.ConditionStatus
  5752. </a>
  5753. </em>
  5754. </td>
  5755. <td>
  5756. </td>
  5757. </tr>
  5758. <tr>
  5759. <td>
  5760. <code>reason</code></br>
  5761. <em>
  5762. string
  5763. </em>
  5764. </td>
  5765. <td>
  5766. <em>(Optional)</em>
  5767. </td>
  5768. </tr>
  5769. <tr>
  5770. <td>
  5771. <code>message</code></br>
  5772. <em>
  5773. string
  5774. </em>
  5775. </td>
  5776. <td>
  5777. <em>(Optional)</em>
  5778. </td>
  5779. </tr>
  5780. <tr>
  5781. <td>
  5782. <code>lastTransitionTime</code></br>
  5783. <em>
  5784. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  5785. Kubernetes meta/v1.Time
  5786. </a>
  5787. </em>
  5788. </td>
  5789. <td>
  5790. <em>(Optional)</em>
  5791. </td>
  5792. </tr>
  5793. </tbody>
  5794. </table>
  5795. <h3 id="external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget
  5796. </h3>
  5797. <p>
  5798. (<em>Appears on:</em>
  5799. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>)
  5800. </p>
  5801. <p>
  5802. <p>ExternalSecretTarget defines the Kubernetes Secret to be created
  5803. There can be only one target per ExternalSecret.</p>
  5804. </p>
  5805. <table>
  5806. <thead>
  5807. <tr>
  5808. <th>Field</th>
  5809. <th>Description</th>
  5810. </tr>
  5811. </thead>
  5812. <tbody>
  5813. <tr>
  5814. <td>
  5815. <code>name</code></br>
  5816. <em>
  5817. string
  5818. </em>
  5819. </td>
  5820. <td>
  5821. <em>(Optional)</em>
  5822. <p>The name of the Secret resource to be managed.
  5823. Defaults to the .metadata.name of the ExternalSecret resource</p>
  5824. </td>
  5825. </tr>
  5826. <tr>
  5827. <td>
  5828. <code>creationPolicy</code></br>
  5829. <em>
  5830. <a href="#external-secrets.io/v1.ExternalSecretCreationPolicy">
  5831. ExternalSecretCreationPolicy
  5832. </a>
  5833. </em>
  5834. </td>
  5835. <td>
  5836. <em>(Optional)</em>
  5837. <p>CreationPolicy defines rules on how to create the resulting Secret.
  5838. Defaults to &ldquo;Owner&rdquo;</p>
  5839. </td>
  5840. </tr>
  5841. <tr>
  5842. <td>
  5843. <code>deletionPolicy</code></br>
  5844. <em>
  5845. <a href="#external-secrets.io/v1.ExternalSecretDeletionPolicy">
  5846. ExternalSecretDeletionPolicy
  5847. </a>
  5848. </em>
  5849. </td>
  5850. <td>
  5851. <em>(Optional)</em>
  5852. <p>DeletionPolicy defines rules on how to delete the resulting Secret.
  5853. Defaults to &ldquo;Retain&rdquo;</p>
  5854. </td>
  5855. </tr>
  5856. <tr>
  5857. <td>
  5858. <code>template</code></br>
  5859. <em>
  5860. <a href="#external-secrets.io/v1.ExternalSecretTemplate">
  5861. ExternalSecretTemplate
  5862. </a>
  5863. </em>
  5864. </td>
  5865. <td>
  5866. <em>(Optional)</em>
  5867. <p>Template defines a blueprint for the created Secret resource.</p>
  5868. </td>
  5869. </tr>
  5870. <tr>
  5871. <td>
  5872. <code>immutable</code></br>
  5873. <em>
  5874. bool
  5875. </em>
  5876. </td>
  5877. <td>
  5878. <em>(Optional)</em>
  5879. <p>Immutable defines if the final secret will be immutable</p>
  5880. </td>
  5881. </tr>
  5882. </tbody>
  5883. </table>
  5884. <h3 id="external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate
  5885. </h3>
  5886. <p>
  5887. (<em>Appears on:</em>
  5888. <a href="#external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget</a>)
  5889. </p>
  5890. <p>
  5891. <p>ExternalSecretTemplate defines a blueprint for the created Secret resource.
  5892. 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>
  5893. </p>
  5894. <table>
  5895. <thead>
  5896. <tr>
  5897. <th>Field</th>
  5898. <th>Description</th>
  5899. </tr>
  5900. </thead>
  5901. <tbody>
  5902. <tr>
  5903. <td>
  5904. <code>type</code></br>
  5905. <em>
  5906. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#secrettype-v1-core">
  5907. Kubernetes core/v1.SecretType
  5908. </a>
  5909. </em>
  5910. </td>
  5911. <td>
  5912. <em>(Optional)</em>
  5913. </td>
  5914. </tr>
  5915. <tr>
  5916. <td>
  5917. <code>engineVersion</code></br>
  5918. <em>
  5919. <a href="#external-secrets.io/v1.TemplateEngineVersion">
  5920. TemplateEngineVersion
  5921. </a>
  5922. </em>
  5923. </td>
  5924. <td>
  5925. <p>EngineVersion specifies the template engine version
  5926. that should be used to compile/execute the
  5927. template specified in .data and .templateFrom[].</p>
  5928. </td>
  5929. </tr>
  5930. <tr>
  5931. <td>
  5932. <code>metadata</code></br>
  5933. <em>
  5934. <a href="#external-secrets.io/v1.ExternalSecretTemplateMetadata">
  5935. ExternalSecretTemplateMetadata
  5936. </a>
  5937. </em>
  5938. </td>
  5939. <td>
  5940. <em>(Optional)</em>
  5941. </td>
  5942. </tr>
  5943. <tr>
  5944. <td>
  5945. <code>mergePolicy</code></br>
  5946. <em>
  5947. <a href="#external-secrets.io/v1.TemplateMergePolicy">
  5948. TemplateMergePolicy
  5949. </a>
  5950. </em>
  5951. </td>
  5952. <td>
  5953. </td>
  5954. </tr>
  5955. <tr>
  5956. <td>
  5957. <code>data</code></br>
  5958. <em>
  5959. map[string]string
  5960. </em>
  5961. </td>
  5962. <td>
  5963. <em>(Optional)</em>
  5964. </td>
  5965. </tr>
  5966. <tr>
  5967. <td>
  5968. <code>templateFrom</code></br>
  5969. <em>
  5970. <a href="#external-secrets.io/v1.TemplateFrom">
  5971. []TemplateFrom
  5972. </a>
  5973. </em>
  5974. </td>
  5975. <td>
  5976. <em>(Optional)</em>
  5977. </td>
  5978. </tr>
  5979. </tbody>
  5980. </table>
  5981. <h3 id="external-secrets.io/v1.ExternalSecretTemplateMetadata">ExternalSecretTemplateMetadata
  5982. </h3>
  5983. <p>
  5984. (<em>Appears on:</em>
  5985. <a href="#external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  5986. </p>
  5987. <p>
  5988. <p>ExternalSecretTemplateMetadata defines metadata fields for the Secret blueprint.</p>
  5989. </p>
  5990. <table>
  5991. <thead>
  5992. <tr>
  5993. <th>Field</th>
  5994. <th>Description</th>
  5995. </tr>
  5996. </thead>
  5997. <tbody>
  5998. <tr>
  5999. <td>
  6000. <code>annotations</code></br>
  6001. <em>
  6002. map[string]string
  6003. </em>
  6004. </td>
  6005. <td>
  6006. <em>(Optional)</em>
  6007. </td>
  6008. </tr>
  6009. <tr>
  6010. <td>
  6011. <code>labels</code></br>
  6012. <em>
  6013. map[string]string
  6014. </em>
  6015. </td>
  6016. <td>
  6017. <em>(Optional)</em>
  6018. </td>
  6019. </tr>
  6020. <tr>
  6021. <td>
  6022. <code>finalizers</code></br>
  6023. <em>
  6024. []string
  6025. </em>
  6026. </td>
  6027. <td>
  6028. <em>(Optional)</em>
  6029. </td>
  6030. </tr>
  6031. </tbody>
  6032. </table>
  6033. <h3 id="external-secrets.io/v1.ExternalSecretValidator">ExternalSecretValidator
  6034. </h3>
  6035. <p>
  6036. </p>
  6037. <h3 id="external-secrets.io/v1.FakeProvider">FakeProvider
  6038. </h3>
  6039. <p>
  6040. (<em>Appears on:</em>
  6041. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6042. </p>
  6043. <p>
  6044. <p>FakeProvider configures a fake provider that returns static values.</p>
  6045. </p>
  6046. <table>
  6047. <thead>
  6048. <tr>
  6049. <th>Field</th>
  6050. <th>Description</th>
  6051. </tr>
  6052. </thead>
  6053. <tbody>
  6054. <tr>
  6055. <td>
  6056. <code>data</code></br>
  6057. <em>
  6058. <a href="#external-secrets.io/v1.FakeProviderData">
  6059. []FakeProviderData
  6060. </a>
  6061. </em>
  6062. </td>
  6063. <td>
  6064. </td>
  6065. </tr>
  6066. <tr>
  6067. <td>
  6068. <code>validationResult</code></br>
  6069. <em>
  6070. <a href="#external-secrets.io/v1.ValidationResult">
  6071. ValidationResult
  6072. </a>
  6073. </em>
  6074. </td>
  6075. <td>
  6076. </td>
  6077. </tr>
  6078. </tbody>
  6079. </table>
  6080. <h3 id="external-secrets.io/v1.FakeProviderData">FakeProviderData
  6081. </h3>
  6082. <p>
  6083. (<em>Appears on:</em>
  6084. <a href="#external-secrets.io/v1.FakeProvider">FakeProvider</a>)
  6085. </p>
  6086. <p>
  6087. </p>
  6088. <table>
  6089. <thead>
  6090. <tr>
  6091. <th>Field</th>
  6092. <th>Description</th>
  6093. </tr>
  6094. </thead>
  6095. <tbody>
  6096. <tr>
  6097. <td>
  6098. <code>key</code></br>
  6099. <em>
  6100. string
  6101. </em>
  6102. </td>
  6103. <td>
  6104. </td>
  6105. </tr>
  6106. <tr>
  6107. <td>
  6108. <code>value</code></br>
  6109. <em>
  6110. string
  6111. </em>
  6112. </td>
  6113. <td>
  6114. </td>
  6115. </tr>
  6116. <tr>
  6117. <td>
  6118. <code>version</code></br>
  6119. <em>
  6120. string
  6121. </em>
  6122. </td>
  6123. <td>
  6124. </td>
  6125. </tr>
  6126. </tbody>
  6127. </table>
  6128. <h3 id="external-secrets.io/v1.FetchingPolicy">FetchingPolicy
  6129. </h3>
  6130. <p>
  6131. (<em>Appears on:</em>
  6132. <a href="#external-secrets.io/v1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>,
  6133. <a href="#external-secrets.io/v1.YandexLockboxProvider">YandexLockboxProvider</a>)
  6134. </p>
  6135. <p>
  6136. </p>
  6137. <table>
  6138. <thead>
  6139. <tr>
  6140. <th>Field</th>
  6141. <th>Description</th>
  6142. </tr>
  6143. </thead>
  6144. <tbody>
  6145. <tr>
  6146. <td>
  6147. <code>byID</code></br>
  6148. <em>
  6149. <a href="#external-secrets.io/v1.ByID">
  6150. ByID
  6151. </a>
  6152. </em>
  6153. </td>
  6154. <td>
  6155. </td>
  6156. </tr>
  6157. <tr>
  6158. <td>
  6159. <code>byName</code></br>
  6160. <em>
  6161. <a href="#external-secrets.io/v1.ByName">
  6162. ByName
  6163. </a>
  6164. </em>
  6165. </td>
  6166. <td>
  6167. </td>
  6168. </tr>
  6169. </tbody>
  6170. </table>
  6171. <h3 id="external-secrets.io/v1.FindName">FindName
  6172. </h3>
  6173. <p>
  6174. (<em>Appears on:</em>
  6175. <a href="#external-secrets.io/v1.ExternalSecretFind">ExternalSecretFind</a>)
  6176. </p>
  6177. <p>
  6178. </p>
  6179. <table>
  6180. <thead>
  6181. <tr>
  6182. <th>Field</th>
  6183. <th>Description</th>
  6184. </tr>
  6185. </thead>
  6186. <tbody>
  6187. <tr>
  6188. <td>
  6189. <code>regexp</code></br>
  6190. <em>
  6191. string
  6192. </em>
  6193. </td>
  6194. <td>
  6195. <em>(Optional)</em>
  6196. <p>Finds secrets base</p>
  6197. </td>
  6198. </tr>
  6199. </tbody>
  6200. </table>
  6201. <h3 id="external-secrets.io/v1.FortanixProvider">FortanixProvider
  6202. </h3>
  6203. <p>
  6204. (<em>Appears on:</em>
  6205. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6206. </p>
  6207. <p>
  6208. </p>
  6209. <table>
  6210. <thead>
  6211. <tr>
  6212. <th>Field</th>
  6213. <th>Description</th>
  6214. </tr>
  6215. </thead>
  6216. <tbody>
  6217. <tr>
  6218. <td>
  6219. <code>apiUrl</code></br>
  6220. <em>
  6221. string
  6222. </em>
  6223. </td>
  6224. <td>
  6225. <p>APIURL is the URL of SDKMS API. Defaults to <code>sdkms.fortanix.com</code>.</p>
  6226. </td>
  6227. </tr>
  6228. <tr>
  6229. <td>
  6230. <code>apiKey</code></br>
  6231. <em>
  6232. <a href="#external-secrets.io/v1.FortanixProviderSecretRef">
  6233. FortanixProviderSecretRef
  6234. </a>
  6235. </em>
  6236. </td>
  6237. <td>
  6238. <p>APIKey is the API token to access SDKMS Applications.</p>
  6239. </td>
  6240. </tr>
  6241. </tbody>
  6242. </table>
  6243. <h3 id="external-secrets.io/v1.FortanixProviderSecretRef">FortanixProviderSecretRef
  6244. </h3>
  6245. <p>
  6246. (<em>Appears on:</em>
  6247. <a href="#external-secrets.io/v1.FortanixProvider">FortanixProvider</a>)
  6248. </p>
  6249. <p>
  6250. </p>
  6251. <table>
  6252. <thead>
  6253. <tr>
  6254. <th>Field</th>
  6255. <th>Description</th>
  6256. </tr>
  6257. </thead>
  6258. <tbody>
  6259. <tr>
  6260. <td>
  6261. <code>secretRef</code></br>
  6262. <em>
  6263. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6264. External Secrets meta/v1.SecretKeySelector
  6265. </a>
  6266. </em>
  6267. </td>
  6268. <td>
  6269. <p>SecretRef is a reference to a secret containing the SDKMS API Key.</p>
  6270. </td>
  6271. </tr>
  6272. </tbody>
  6273. </table>
  6274. <h3 id="external-secrets.io/v1.GCPSMAuth">GCPSMAuth
  6275. </h3>
  6276. <p>
  6277. (<em>Appears on:</em>
  6278. <a href="#external-secrets.io/v1.GCPSMProvider">GCPSMProvider</a>)
  6279. </p>
  6280. <p>
  6281. </p>
  6282. <table>
  6283. <thead>
  6284. <tr>
  6285. <th>Field</th>
  6286. <th>Description</th>
  6287. </tr>
  6288. </thead>
  6289. <tbody>
  6290. <tr>
  6291. <td>
  6292. <code>secretRef</code></br>
  6293. <em>
  6294. <a href="#external-secrets.io/v1.GCPSMAuthSecretRef">
  6295. GCPSMAuthSecretRef
  6296. </a>
  6297. </em>
  6298. </td>
  6299. <td>
  6300. <em>(Optional)</em>
  6301. </td>
  6302. </tr>
  6303. <tr>
  6304. <td>
  6305. <code>workloadIdentity</code></br>
  6306. <em>
  6307. <a href="#external-secrets.io/v1.GCPWorkloadIdentity">
  6308. GCPWorkloadIdentity
  6309. </a>
  6310. </em>
  6311. </td>
  6312. <td>
  6313. <em>(Optional)</em>
  6314. </td>
  6315. </tr>
  6316. <tr>
  6317. <td>
  6318. <code>workloadIdentityFederation</code></br>
  6319. <em>
  6320. <a href="#external-secrets.io/v1.GCPWorkloadIdentityFederation">
  6321. GCPWorkloadIdentityFederation
  6322. </a>
  6323. </em>
  6324. </td>
  6325. <td>
  6326. <em>(Optional)</em>
  6327. </td>
  6328. </tr>
  6329. </tbody>
  6330. </table>
  6331. <h3 id="external-secrets.io/v1.GCPSMAuthSecretRef">GCPSMAuthSecretRef
  6332. </h3>
  6333. <p>
  6334. (<em>Appears on:</em>
  6335. <a href="#external-secrets.io/v1.GCPSMAuth">GCPSMAuth</a>)
  6336. </p>
  6337. <p>
  6338. </p>
  6339. <table>
  6340. <thead>
  6341. <tr>
  6342. <th>Field</th>
  6343. <th>Description</th>
  6344. </tr>
  6345. </thead>
  6346. <tbody>
  6347. <tr>
  6348. <td>
  6349. <code>secretAccessKeySecretRef</code></br>
  6350. <em>
  6351. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6352. External Secrets meta/v1.SecretKeySelector
  6353. </a>
  6354. </em>
  6355. </td>
  6356. <td>
  6357. <em>(Optional)</em>
  6358. <p>The SecretAccessKey is used for authentication</p>
  6359. </td>
  6360. </tr>
  6361. </tbody>
  6362. </table>
  6363. <h3 id="external-secrets.io/v1.GCPSMProvider">GCPSMProvider
  6364. </h3>
  6365. <p>
  6366. (<em>Appears on:</em>
  6367. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6368. </p>
  6369. <p>
  6370. <p>GCPSMProvider Configures a store to sync secrets using the GCP Secret Manager provider.</p>
  6371. </p>
  6372. <table>
  6373. <thead>
  6374. <tr>
  6375. <th>Field</th>
  6376. <th>Description</th>
  6377. </tr>
  6378. </thead>
  6379. <tbody>
  6380. <tr>
  6381. <td>
  6382. <code>auth</code></br>
  6383. <em>
  6384. <a href="#external-secrets.io/v1.GCPSMAuth">
  6385. GCPSMAuth
  6386. </a>
  6387. </em>
  6388. </td>
  6389. <td>
  6390. <em>(Optional)</em>
  6391. <p>Auth defines the information necessary to authenticate against GCP</p>
  6392. </td>
  6393. </tr>
  6394. <tr>
  6395. <td>
  6396. <code>projectID</code></br>
  6397. <em>
  6398. string
  6399. </em>
  6400. </td>
  6401. <td>
  6402. <p>ProjectID project where secret is located</p>
  6403. </td>
  6404. </tr>
  6405. <tr>
  6406. <td>
  6407. <code>location</code></br>
  6408. <em>
  6409. string
  6410. </em>
  6411. </td>
  6412. <td>
  6413. <p>Location optionally defines a location for a secret</p>
  6414. </td>
  6415. </tr>
  6416. </tbody>
  6417. </table>
  6418. <h3 id="external-secrets.io/v1.GCPWorkloadIdentity">GCPWorkloadIdentity
  6419. </h3>
  6420. <p>
  6421. (<em>Appears on:</em>
  6422. <a href="#external-secrets.io/v1.GCPSMAuth">GCPSMAuth</a>)
  6423. </p>
  6424. <p>
  6425. </p>
  6426. <table>
  6427. <thead>
  6428. <tr>
  6429. <th>Field</th>
  6430. <th>Description</th>
  6431. </tr>
  6432. </thead>
  6433. <tbody>
  6434. <tr>
  6435. <td>
  6436. <code>serviceAccountRef</code></br>
  6437. <em>
  6438. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  6439. External Secrets meta/v1.ServiceAccountSelector
  6440. </a>
  6441. </em>
  6442. </td>
  6443. <td>
  6444. </td>
  6445. </tr>
  6446. <tr>
  6447. <td>
  6448. <code>clusterLocation</code></br>
  6449. <em>
  6450. string
  6451. </em>
  6452. </td>
  6453. <td>
  6454. <em>(Optional)</em>
  6455. <p>ClusterLocation is the location of the cluster
  6456. If not specified, it fetches information from the metadata server</p>
  6457. </td>
  6458. </tr>
  6459. <tr>
  6460. <td>
  6461. <code>clusterName</code></br>
  6462. <em>
  6463. string
  6464. </em>
  6465. </td>
  6466. <td>
  6467. <em>(Optional)</em>
  6468. <p>ClusterName is the name of the cluster
  6469. If not specified, it fetches information from the metadata server</p>
  6470. </td>
  6471. </tr>
  6472. <tr>
  6473. <td>
  6474. <code>clusterProjectID</code></br>
  6475. <em>
  6476. string
  6477. </em>
  6478. </td>
  6479. <td>
  6480. <em>(Optional)</em>
  6481. <p>ClusterProjectID is the project ID of the cluster
  6482. If not specified, it fetches information from the metadata server</p>
  6483. </td>
  6484. </tr>
  6485. </tbody>
  6486. </table>
  6487. <h3 id="external-secrets.io/v1.GCPWorkloadIdentityFederation">GCPWorkloadIdentityFederation
  6488. </h3>
  6489. <p>
  6490. (<em>Appears on:</em>
  6491. <a href="#external-secrets.io/v1.GCPSMAuth">GCPSMAuth</a>)
  6492. </p>
  6493. <p>
  6494. <p>GCPWorkloadIdentityFederation holds the configurations required for generating federated access tokens.</p>
  6495. </p>
  6496. <table>
  6497. <thead>
  6498. <tr>
  6499. <th>Field</th>
  6500. <th>Description</th>
  6501. </tr>
  6502. </thead>
  6503. <tbody>
  6504. <tr>
  6505. <td>
  6506. <code>credConfig</code></br>
  6507. <em>
  6508. <a href="#external-secrets.io/v1.ConfigMapReference">
  6509. ConfigMapReference
  6510. </a>
  6511. </em>
  6512. </td>
  6513. <td>
  6514. <p>credConfig holds the configmap reference containing the GCP external account credential configuration in JSON format and the key name containing the json data.
  6515. For using Kubernetes cluster as the identity provider, use serviceAccountRef instead. Operators mounted serviceaccount token cannot be used as the token source, instead
  6516. serviceAccountRef must be used by providing operators service account details.</p>
  6517. </td>
  6518. </tr>
  6519. <tr>
  6520. <td>
  6521. <code>serviceAccountRef</code></br>
  6522. <em>
  6523. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  6524. External Secrets meta/v1.ServiceAccountSelector
  6525. </a>
  6526. </em>
  6527. </td>
  6528. <td>
  6529. <p>serviceAccountRef is the reference to the kubernetes ServiceAccount to be used for obtaining the tokens,
  6530. when Kubernetes is configured as provider in workload identity pool.</p>
  6531. </td>
  6532. </tr>
  6533. <tr>
  6534. <td>
  6535. <code>awsSecurityCredentials</code></br>
  6536. <em>
  6537. <a href="#external-secrets.io/v1.AwsCredentialsConfig">
  6538. AwsCredentialsConfig
  6539. </a>
  6540. </em>
  6541. </td>
  6542. <td>
  6543. <p>awsSecurityCredentials is for configuring AWS region and credentials to use for obtaining the access token,
  6544. when using the AWS metadata server is not an option.</p>
  6545. </td>
  6546. </tr>
  6547. <tr>
  6548. <td>
  6549. <code>audience</code></br>
  6550. <em>
  6551. string
  6552. </em>
  6553. </td>
  6554. <td>
  6555. <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.
  6556. If specified, Audience found in the external account credential config will be overridden with the configured value.
  6557. audience must be provided when serviceAccountRef or awsSecurityCredentials is configured.</p>
  6558. </td>
  6559. </tr>
  6560. <tr>
  6561. <td>
  6562. <code>externalTokenEndpoint</code></br>
  6563. <em>
  6564. string
  6565. </em>
  6566. </td>
  6567. <td>
  6568. <p>externalTokenEndpoint is the endpoint explicitly set up to provide tokens, which will be matched against the
  6569. credential_source.url in the provided credConfig. This field is merely to double-check the external token source
  6570. URL is having the expected value.</p>
  6571. </td>
  6572. </tr>
  6573. </tbody>
  6574. </table>
  6575. <h3 id="external-secrets.io/v1.GcpIamAuthCredentials">GcpIamAuthCredentials
  6576. </h3>
  6577. <p>
  6578. (<em>Appears on:</em>
  6579. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  6580. </p>
  6581. <p>
  6582. </p>
  6583. <table>
  6584. <thead>
  6585. <tr>
  6586. <th>Field</th>
  6587. <th>Description</th>
  6588. </tr>
  6589. </thead>
  6590. <tbody>
  6591. <tr>
  6592. <td>
  6593. <code>identityId</code></br>
  6594. <em>
  6595. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6596. External Secrets meta/v1.SecretKeySelector
  6597. </a>
  6598. </em>
  6599. </td>
  6600. <td>
  6601. </td>
  6602. </tr>
  6603. <tr>
  6604. <td>
  6605. <code>serviceAccountKeyFilePath</code></br>
  6606. <em>
  6607. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6608. External Secrets meta/v1.SecretKeySelector
  6609. </a>
  6610. </em>
  6611. </td>
  6612. <td>
  6613. </td>
  6614. </tr>
  6615. </tbody>
  6616. </table>
  6617. <h3 id="external-secrets.io/v1.GcpIdTokenAuthCredentials">GcpIdTokenAuthCredentials
  6618. </h3>
  6619. <p>
  6620. (<em>Appears on:</em>
  6621. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  6622. </p>
  6623. <p>
  6624. </p>
  6625. <table>
  6626. <thead>
  6627. <tr>
  6628. <th>Field</th>
  6629. <th>Description</th>
  6630. </tr>
  6631. </thead>
  6632. <tbody>
  6633. <tr>
  6634. <td>
  6635. <code>identityId</code></br>
  6636. <em>
  6637. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6638. External Secrets meta/v1.SecretKeySelector
  6639. </a>
  6640. </em>
  6641. </td>
  6642. <td>
  6643. </td>
  6644. </tr>
  6645. </tbody>
  6646. </table>
  6647. <h3 id="external-secrets.io/v1.GeneratorRef">GeneratorRef
  6648. </h3>
  6649. <p>
  6650. (<em>Appears on:</em>
  6651. <a href="#external-secrets.io/v1.StoreGeneratorSourceRef">StoreGeneratorSourceRef</a>,
  6652. <a href="#external-secrets.io/v1.StoreSourceRef">StoreSourceRef</a>)
  6653. </p>
  6654. <p>
  6655. <p>GeneratorRef points to a generator custom resource.</p>
  6656. </p>
  6657. <table>
  6658. <thead>
  6659. <tr>
  6660. <th>Field</th>
  6661. <th>Description</th>
  6662. </tr>
  6663. </thead>
  6664. <tbody>
  6665. <tr>
  6666. <td>
  6667. <code>apiVersion</code></br>
  6668. <em>
  6669. string
  6670. </em>
  6671. </td>
  6672. <td>
  6673. <p>Specify the apiVersion of the generator resource</p>
  6674. </td>
  6675. </tr>
  6676. <tr>
  6677. <td>
  6678. <code>kind</code></br>
  6679. <em>
  6680. string
  6681. </em>
  6682. </td>
  6683. <td>
  6684. <p>Specify the Kind of the generator resource</p>
  6685. </td>
  6686. </tr>
  6687. <tr>
  6688. <td>
  6689. <code>name</code></br>
  6690. <em>
  6691. string
  6692. </em>
  6693. </td>
  6694. <td>
  6695. <p>Specify the name of the generator resource</p>
  6696. </td>
  6697. </tr>
  6698. </tbody>
  6699. </table>
  6700. <h3 id="external-secrets.io/v1.GenericStore">GenericStore
  6701. </h3>
  6702. <p>
  6703. <p>GenericStore is a common interface for interacting with ClusterSecretStore
  6704. or a namespaced SecretStore.</p>
  6705. </p>
  6706. <h3 id="external-secrets.io/v1.GenericStoreValidator">GenericStoreValidator
  6707. </h3>
  6708. <p>
  6709. </p>
  6710. <h3 id="external-secrets.io/v1.GithubAppAuth">GithubAppAuth
  6711. </h3>
  6712. <p>
  6713. (<em>Appears on:</em>
  6714. <a href="#external-secrets.io/v1.GithubProvider">GithubProvider</a>)
  6715. </p>
  6716. <p>
  6717. </p>
  6718. <table>
  6719. <thead>
  6720. <tr>
  6721. <th>Field</th>
  6722. <th>Description</th>
  6723. </tr>
  6724. </thead>
  6725. <tbody>
  6726. <tr>
  6727. <td>
  6728. <code>privateKey</code></br>
  6729. <em>
  6730. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6731. External Secrets meta/v1.SecretKeySelector
  6732. </a>
  6733. </em>
  6734. </td>
  6735. <td>
  6736. </td>
  6737. </tr>
  6738. </tbody>
  6739. </table>
  6740. <h3 id="external-secrets.io/v1.GithubProvider">GithubProvider
  6741. </h3>
  6742. <p>
  6743. (<em>Appears on:</em>
  6744. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6745. </p>
  6746. <p>
  6747. <p>Configures a store to push secrets to Github Actions.</p>
  6748. </p>
  6749. <table>
  6750. <thead>
  6751. <tr>
  6752. <th>Field</th>
  6753. <th>Description</th>
  6754. </tr>
  6755. </thead>
  6756. <tbody>
  6757. <tr>
  6758. <td>
  6759. <code>url</code></br>
  6760. <em>
  6761. string
  6762. </em>
  6763. </td>
  6764. <td>
  6765. <p>URL configures the Github instance URL. Defaults to <a href="https://github.com/">https://github.com/</a>.</p>
  6766. </td>
  6767. </tr>
  6768. <tr>
  6769. <td>
  6770. <code>uploadURL</code></br>
  6771. <em>
  6772. string
  6773. </em>
  6774. </td>
  6775. <td>
  6776. <em>(Optional)</em>
  6777. <p>Upload URL for enterprise instances. Default to URL.</p>
  6778. </td>
  6779. </tr>
  6780. <tr>
  6781. <td>
  6782. <code>auth</code></br>
  6783. <em>
  6784. <a href="#external-secrets.io/v1.GithubAppAuth">
  6785. GithubAppAuth
  6786. </a>
  6787. </em>
  6788. </td>
  6789. <td>
  6790. <p>auth configures how secret-manager authenticates with a Github instance.</p>
  6791. </td>
  6792. </tr>
  6793. <tr>
  6794. <td>
  6795. <code>appID</code></br>
  6796. <em>
  6797. int64
  6798. </em>
  6799. </td>
  6800. <td>
  6801. <p>appID specifies the Github APP that will be used to authenticate the client</p>
  6802. </td>
  6803. </tr>
  6804. <tr>
  6805. <td>
  6806. <code>installationID</code></br>
  6807. <em>
  6808. int64
  6809. </em>
  6810. </td>
  6811. <td>
  6812. <p>installationID specifies the Github APP installation that will be used to authenticate the client</p>
  6813. </td>
  6814. </tr>
  6815. <tr>
  6816. <td>
  6817. <code>organization</code></br>
  6818. <em>
  6819. string
  6820. </em>
  6821. </td>
  6822. <td>
  6823. <p>organization will be used to fetch secrets from the Github organization</p>
  6824. </td>
  6825. </tr>
  6826. <tr>
  6827. <td>
  6828. <code>repository</code></br>
  6829. <em>
  6830. string
  6831. </em>
  6832. </td>
  6833. <td>
  6834. <em>(Optional)</em>
  6835. <p>repository will be used to fetch secrets from the Github repository within an organization</p>
  6836. </td>
  6837. </tr>
  6838. <tr>
  6839. <td>
  6840. <code>environment</code></br>
  6841. <em>
  6842. string
  6843. </em>
  6844. </td>
  6845. <td>
  6846. <em>(Optional)</em>
  6847. <p>environment will be used to fetch secrets from a particular environment within a github repository</p>
  6848. </td>
  6849. </tr>
  6850. </tbody>
  6851. </table>
  6852. <h3 id="external-secrets.io/v1.GitlabAuth">GitlabAuth
  6853. </h3>
  6854. <p>
  6855. (<em>Appears on:</em>
  6856. <a href="#external-secrets.io/v1.GitlabProvider">GitlabProvider</a>)
  6857. </p>
  6858. <p>
  6859. </p>
  6860. <table>
  6861. <thead>
  6862. <tr>
  6863. <th>Field</th>
  6864. <th>Description</th>
  6865. </tr>
  6866. </thead>
  6867. <tbody>
  6868. <tr>
  6869. <td>
  6870. <code>SecretRef</code></br>
  6871. <em>
  6872. <a href="#external-secrets.io/v1.GitlabSecretRef">
  6873. GitlabSecretRef
  6874. </a>
  6875. </em>
  6876. </td>
  6877. <td>
  6878. </td>
  6879. </tr>
  6880. </tbody>
  6881. </table>
  6882. <h3 id="external-secrets.io/v1.GitlabProvider">GitlabProvider
  6883. </h3>
  6884. <p>
  6885. (<em>Appears on:</em>
  6886. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6887. </p>
  6888. <p>
  6889. <p>Configures a store to sync secrets with a GitLab instance.</p>
  6890. </p>
  6891. <table>
  6892. <thead>
  6893. <tr>
  6894. <th>Field</th>
  6895. <th>Description</th>
  6896. </tr>
  6897. </thead>
  6898. <tbody>
  6899. <tr>
  6900. <td>
  6901. <code>url</code></br>
  6902. <em>
  6903. string
  6904. </em>
  6905. </td>
  6906. <td>
  6907. <p>URL configures the GitLab instance URL. Defaults to <a href="https://gitlab.com/">https://gitlab.com/</a>.</p>
  6908. </td>
  6909. </tr>
  6910. <tr>
  6911. <td>
  6912. <code>auth</code></br>
  6913. <em>
  6914. <a href="#external-secrets.io/v1.GitlabAuth">
  6915. GitlabAuth
  6916. </a>
  6917. </em>
  6918. </td>
  6919. <td>
  6920. <p>Auth configures how secret-manager authenticates with a GitLab instance.</p>
  6921. </td>
  6922. </tr>
  6923. <tr>
  6924. <td>
  6925. <code>projectID</code></br>
  6926. <em>
  6927. string
  6928. </em>
  6929. </td>
  6930. <td>
  6931. <p>ProjectID specifies a project where secrets are located.</p>
  6932. </td>
  6933. </tr>
  6934. <tr>
  6935. <td>
  6936. <code>inheritFromGroups</code></br>
  6937. <em>
  6938. bool
  6939. </em>
  6940. </td>
  6941. <td>
  6942. <p>InheritFromGroups specifies whether parent groups should be discovered and checked for secrets.</p>
  6943. </td>
  6944. </tr>
  6945. <tr>
  6946. <td>
  6947. <code>groupIDs</code></br>
  6948. <em>
  6949. []string
  6950. </em>
  6951. </td>
  6952. <td>
  6953. <p>GroupIDs specify, which gitlab groups to pull secrets from. Group secrets are read from left to right followed by the project variables.</p>
  6954. </td>
  6955. </tr>
  6956. <tr>
  6957. <td>
  6958. <code>environment</code></br>
  6959. <em>
  6960. string
  6961. </em>
  6962. </td>
  6963. <td>
  6964. <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>
  6965. </td>
  6966. </tr>
  6967. <tr>
  6968. <td>
  6969. <code>caBundle</code></br>
  6970. <em>
  6971. []byte
  6972. </em>
  6973. </td>
  6974. <td>
  6975. <em>(Optional)</em>
  6976. <p>Base64 encoded certificate for the GitLab server sdk. The sdk MUST run with HTTPS to make sure no MITM attack
  6977. can be performed.</p>
  6978. </td>
  6979. </tr>
  6980. <tr>
  6981. <td>
  6982. <code>caProvider</code></br>
  6983. <em>
  6984. <a href="#external-secrets.io/v1.CAProvider">
  6985. CAProvider
  6986. </a>
  6987. </em>
  6988. </td>
  6989. <td>
  6990. <em>(Optional)</em>
  6991. <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>
  6992. </td>
  6993. </tr>
  6994. </tbody>
  6995. </table>
  6996. <h3 id="external-secrets.io/v1.GitlabSecretRef">GitlabSecretRef
  6997. </h3>
  6998. <p>
  6999. (<em>Appears on:</em>
  7000. <a href="#external-secrets.io/v1.GitlabAuth">GitlabAuth</a>)
  7001. </p>
  7002. <p>
  7003. </p>
  7004. <table>
  7005. <thead>
  7006. <tr>
  7007. <th>Field</th>
  7008. <th>Description</th>
  7009. </tr>
  7010. </thead>
  7011. <tbody>
  7012. <tr>
  7013. <td>
  7014. <code>accessToken</code></br>
  7015. <em>
  7016. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7017. External Secrets meta/v1.SecretKeySelector
  7018. </a>
  7019. </em>
  7020. </td>
  7021. <td>
  7022. <p>AccessToken is used for authentication.</p>
  7023. </td>
  7024. </tr>
  7025. </tbody>
  7026. </table>
  7027. <h3 id="external-secrets.io/v1.IBMAuth">IBMAuth
  7028. </h3>
  7029. <p>
  7030. (<em>Appears on:</em>
  7031. <a href="#external-secrets.io/v1.IBMProvider">IBMProvider</a>)
  7032. </p>
  7033. <p>
  7034. </p>
  7035. <table>
  7036. <thead>
  7037. <tr>
  7038. <th>Field</th>
  7039. <th>Description</th>
  7040. </tr>
  7041. </thead>
  7042. <tbody>
  7043. <tr>
  7044. <td>
  7045. <code>secretRef</code></br>
  7046. <em>
  7047. <a href="#external-secrets.io/v1.IBMAuthSecretRef">
  7048. IBMAuthSecretRef
  7049. </a>
  7050. </em>
  7051. </td>
  7052. <td>
  7053. </td>
  7054. </tr>
  7055. <tr>
  7056. <td>
  7057. <code>containerAuth</code></br>
  7058. <em>
  7059. <a href="#external-secrets.io/v1.IBMAuthContainerAuth">
  7060. IBMAuthContainerAuth
  7061. </a>
  7062. </em>
  7063. </td>
  7064. <td>
  7065. </td>
  7066. </tr>
  7067. </tbody>
  7068. </table>
  7069. <h3 id="external-secrets.io/v1.IBMAuthContainerAuth">IBMAuthContainerAuth
  7070. </h3>
  7071. <p>
  7072. (<em>Appears on:</em>
  7073. <a href="#external-secrets.io/v1.IBMAuth">IBMAuth</a>)
  7074. </p>
  7075. <p>
  7076. <p>IBM Container-based auth with IAM Trusted Profile.</p>
  7077. </p>
  7078. <table>
  7079. <thead>
  7080. <tr>
  7081. <th>Field</th>
  7082. <th>Description</th>
  7083. </tr>
  7084. </thead>
  7085. <tbody>
  7086. <tr>
  7087. <td>
  7088. <code>profile</code></br>
  7089. <em>
  7090. string
  7091. </em>
  7092. </td>
  7093. <td>
  7094. <p>the IBM Trusted Profile</p>
  7095. </td>
  7096. </tr>
  7097. <tr>
  7098. <td>
  7099. <code>tokenLocation</code></br>
  7100. <em>
  7101. string
  7102. </em>
  7103. </td>
  7104. <td>
  7105. <p>Location the token is mounted on the pod</p>
  7106. </td>
  7107. </tr>
  7108. <tr>
  7109. <td>
  7110. <code>iamEndpoint</code></br>
  7111. <em>
  7112. string
  7113. </em>
  7114. </td>
  7115. <td>
  7116. </td>
  7117. </tr>
  7118. </tbody>
  7119. </table>
  7120. <h3 id="external-secrets.io/v1.IBMAuthSecretRef">IBMAuthSecretRef
  7121. </h3>
  7122. <p>
  7123. (<em>Appears on:</em>
  7124. <a href="#external-secrets.io/v1.IBMAuth">IBMAuth</a>)
  7125. </p>
  7126. <p>
  7127. </p>
  7128. <table>
  7129. <thead>
  7130. <tr>
  7131. <th>Field</th>
  7132. <th>Description</th>
  7133. </tr>
  7134. </thead>
  7135. <tbody>
  7136. <tr>
  7137. <td>
  7138. <code>secretApiKeySecretRef</code></br>
  7139. <em>
  7140. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7141. External Secrets meta/v1.SecretKeySelector
  7142. </a>
  7143. </em>
  7144. </td>
  7145. <td>
  7146. <p>The SecretAccessKey is used for authentication</p>
  7147. </td>
  7148. </tr>
  7149. </tbody>
  7150. </table>
  7151. <h3 id="external-secrets.io/v1.IBMProvider">IBMProvider
  7152. </h3>
  7153. <p>
  7154. (<em>Appears on:</em>
  7155. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7156. </p>
  7157. <p>
  7158. <p>Configures an store to sync secrets using a IBM Cloud Secrets Manager
  7159. backend.</p>
  7160. </p>
  7161. <table>
  7162. <thead>
  7163. <tr>
  7164. <th>Field</th>
  7165. <th>Description</th>
  7166. </tr>
  7167. </thead>
  7168. <tbody>
  7169. <tr>
  7170. <td>
  7171. <code>auth</code></br>
  7172. <em>
  7173. <a href="#external-secrets.io/v1.IBMAuth">
  7174. IBMAuth
  7175. </a>
  7176. </em>
  7177. </td>
  7178. <td>
  7179. <p>Auth configures how secret-manager authenticates with the IBM secrets manager.</p>
  7180. </td>
  7181. </tr>
  7182. <tr>
  7183. <td>
  7184. <code>serviceUrl</code></br>
  7185. <em>
  7186. string
  7187. </em>
  7188. </td>
  7189. <td>
  7190. <p>ServiceURL is the Endpoint URL that is specific to the Secrets Manager service instance</p>
  7191. </td>
  7192. </tr>
  7193. </tbody>
  7194. </table>
  7195. <h3 id="external-secrets.io/v1.InfisicalAuth">InfisicalAuth
  7196. </h3>
  7197. <p>
  7198. (<em>Appears on:</em>
  7199. <a href="#external-secrets.io/v1.InfisicalProvider">InfisicalProvider</a>)
  7200. </p>
  7201. <p>
  7202. </p>
  7203. <table>
  7204. <thead>
  7205. <tr>
  7206. <th>Field</th>
  7207. <th>Description</th>
  7208. </tr>
  7209. </thead>
  7210. <tbody>
  7211. <tr>
  7212. <td>
  7213. <code>universalAuthCredentials</code></br>
  7214. <em>
  7215. <a href="#external-secrets.io/v1.UniversalAuthCredentials">
  7216. UniversalAuthCredentials
  7217. </a>
  7218. </em>
  7219. </td>
  7220. <td>
  7221. <em>(Optional)</em>
  7222. </td>
  7223. </tr>
  7224. <tr>
  7225. <td>
  7226. <code>azureAuthCredentials</code></br>
  7227. <em>
  7228. <a href="#external-secrets.io/v1.AzureAuthCredentials">
  7229. AzureAuthCredentials
  7230. </a>
  7231. </em>
  7232. </td>
  7233. <td>
  7234. <em>(Optional)</em>
  7235. </td>
  7236. </tr>
  7237. <tr>
  7238. <td>
  7239. <code>gcpIdTokenAuthCredentials</code></br>
  7240. <em>
  7241. <a href="#external-secrets.io/v1.GcpIdTokenAuthCredentials">
  7242. GcpIdTokenAuthCredentials
  7243. </a>
  7244. </em>
  7245. </td>
  7246. <td>
  7247. <em>(Optional)</em>
  7248. </td>
  7249. </tr>
  7250. <tr>
  7251. <td>
  7252. <code>gcpIamAuthCredentials</code></br>
  7253. <em>
  7254. <a href="#external-secrets.io/v1.GcpIamAuthCredentials">
  7255. GcpIamAuthCredentials
  7256. </a>
  7257. </em>
  7258. </td>
  7259. <td>
  7260. <em>(Optional)</em>
  7261. </td>
  7262. </tr>
  7263. <tr>
  7264. <td>
  7265. <code>jwtAuthCredentials</code></br>
  7266. <em>
  7267. <a href="#external-secrets.io/v1.JwtAuthCredentials">
  7268. JwtAuthCredentials
  7269. </a>
  7270. </em>
  7271. </td>
  7272. <td>
  7273. <em>(Optional)</em>
  7274. </td>
  7275. </tr>
  7276. <tr>
  7277. <td>
  7278. <code>ldapAuthCredentials</code></br>
  7279. <em>
  7280. <a href="#external-secrets.io/v1.LdapAuthCredentials">
  7281. LdapAuthCredentials
  7282. </a>
  7283. </em>
  7284. </td>
  7285. <td>
  7286. <em>(Optional)</em>
  7287. </td>
  7288. </tr>
  7289. <tr>
  7290. <td>
  7291. <code>ociAuthCredentials</code></br>
  7292. <em>
  7293. <a href="#external-secrets.io/v1.OciAuthCredentials">
  7294. OciAuthCredentials
  7295. </a>
  7296. </em>
  7297. </td>
  7298. <td>
  7299. <em>(Optional)</em>
  7300. </td>
  7301. </tr>
  7302. <tr>
  7303. <td>
  7304. <code>kubernetesAuthCredentials</code></br>
  7305. <em>
  7306. <a href="#external-secrets.io/v1.KubernetesAuthCredentials">
  7307. KubernetesAuthCredentials
  7308. </a>
  7309. </em>
  7310. </td>
  7311. <td>
  7312. <em>(Optional)</em>
  7313. </td>
  7314. </tr>
  7315. <tr>
  7316. <td>
  7317. <code>awsAuthCredentials</code></br>
  7318. <em>
  7319. <a href="#external-secrets.io/v1.AwsAuthCredentials">
  7320. AwsAuthCredentials
  7321. </a>
  7322. </em>
  7323. </td>
  7324. <td>
  7325. <em>(Optional)</em>
  7326. </td>
  7327. </tr>
  7328. <tr>
  7329. <td>
  7330. <code>tokenAuthCredentials</code></br>
  7331. <em>
  7332. <a href="#external-secrets.io/v1.TokenAuthCredentials">
  7333. TokenAuthCredentials
  7334. </a>
  7335. </em>
  7336. </td>
  7337. <td>
  7338. <em>(Optional)</em>
  7339. </td>
  7340. </tr>
  7341. </tbody>
  7342. </table>
  7343. <h3 id="external-secrets.io/v1.InfisicalProvider">InfisicalProvider
  7344. </h3>
  7345. <p>
  7346. (<em>Appears on:</em>
  7347. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7348. </p>
  7349. <p>
  7350. <p>InfisicalProvider configures a store to sync secrets using the Infisical provider.</p>
  7351. </p>
  7352. <table>
  7353. <thead>
  7354. <tr>
  7355. <th>Field</th>
  7356. <th>Description</th>
  7357. </tr>
  7358. </thead>
  7359. <tbody>
  7360. <tr>
  7361. <td>
  7362. <code>auth</code></br>
  7363. <em>
  7364. <a href="#external-secrets.io/v1.InfisicalAuth">
  7365. InfisicalAuth
  7366. </a>
  7367. </em>
  7368. </td>
  7369. <td>
  7370. <p>Auth configures how the Operator authenticates with the Infisical API</p>
  7371. </td>
  7372. </tr>
  7373. <tr>
  7374. <td>
  7375. <code>secretsScope</code></br>
  7376. <em>
  7377. <a href="#external-secrets.io/v1.MachineIdentityScopeInWorkspace">
  7378. MachineIdentityScopeInWorkspace
  7379. </a>
  7380. </em>
  7381. </td>
  7382. <td>
  7383. <p>SecretsScope defines the scope of the secrets within the workspace</p>
  7384. </td>
  7385. </tr>
  7386. <tr>
  7387. <td>
  7388. <code>hostAPI</code></br>
  7389. <em>
  7390. string
  7391. </em>
  7392. </td>
  7393. <td>
  7394. <em>(Optional)</em>
  7395. <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>
  7396. </td>
  7397. </tr>
  7398. </tbody>
  7399. </table>
  7400. <h3 id="external-secrets.io/v1.IntegrationInfo">IntegrationInfo
  7401. </h3>
  7402. <p>
  7403. (<em>Appears on:</em>
  7404. <a href="#external-secrets.io/v1.OnePasswordSDKProvider">OnePasswordSDKProvider</a>)
  7405. </p>
  7406. <p>
  7407. <p>IntegrationInfo specifies the name and version of the integration built using the 1Password Go SDK.</p>
  7408. </p>
  7409. <table>
  7410. <thead>
  7411. <tr>
  7412. <th>Field</th>
  7413. <th>Description</th>
  7414. </tr>
  7415. </thead>
  7416. <tbody>
  7417. <tr>
  7418. <td>
  7419. <code>name</code></br>
  7420. <em>
  7421. string
  7422. </em>
  7423. </td>
  7424. <td>
  7425. <p>Name defaults to &ldquo;1Password SDK&rdquo;.</p>
  7426. </td>
  7427. </tr>
  7428. <tr>
  7429. <td>
  7430. <code>version</code></br>
  7431. <em>
  7432. string
  7433. </em>
  7434. </td>
  7435. <td>
  7436. <p>Version defaults to &ldquo;v1.0.0&rdquo;.</p>
  7437. </td>
  7438. </tr>
  7439. </tbody>
  7440. </table>
  7441. <h3 id="external-secrets.io/v1.JwtAuthCredentials">JwtAuthCredentials
  7442. </h3>
  7443. <p>
  7444. (<em>Appears on:</em>
  7445. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  7446. </p>
  7447. <p>
  7448. </p>
  7449. <table>
  7450. <thead>
  7451. <tr>
  7452. <th>Field</th>
  7453. <th>Description</th>
  7454. </tr>
  7455. </thead>
  7456. <tbody>
  7457. <tr>
  7458. <td>
  7459. <code>identityId</code></br>
  7460. <em>
  7461. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7462. External Secrets meta/v1.SecretKeySelector
  7463. </a>
  7464. </em>
  7465. </td>
  7466. <td>
  7467. </td>
  7468. </tr>
  7469. <tr>
  7470. <td>
  7471. <code>jwt</code></br>
  7472. <em>
  7473. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7474. External Secrets meta/v1.SecretKeySelector
  7475. </a>
  7476. </em>
  7477. </td>
  7478. <td>
  7479. </td>
  7480. </tr>
  7481. </tbody>
  7482. </table>
  7483. <h3 id="external-secrets.io/v1.KeeperSecurityProvider">KeeperSecurityProvider
  7484. </h3>
  7485. <p>
  7486. (<em>Appears on:</em>
  7487. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7488. </p>
  7489. <p>
  7490. <p>KeeperSecurityProvider Configures a store to sync secrets using Keeper Security.</p>
  7491. </p>
  7492. <table>
  7493. <thead>
  7494. <tr>
  7495. <th>Field</th>
  7496. <th>Description</th>
  7497. </tr>
  7498. </thead>
  7499. <tbody>
  7500. <tr>
  7501. <td>
  7502. <code>authRef</code></br>
  7503. <em>
  7504. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7505. External Secrets meta/v1.SecretKeySelector
  7506. </a>
  7507. </em>
  7508. </td>
  7509. <td>
  7510. </td>
  7511. </tr>
  7512. <tr>
  7513. <td>
  7514. <code>folderID</code></br>
  7515. <em>
  7516. string
  7517. </em>
  7518. </td>
  7519. <td>
  7520. </td>
  7521. </tr>
  7522. </tbody>
  7523. </table>
  7524. <h3 id="external-secrets.io/v1.KubernetesAuth">KubernetesAuth
  7525. </h3>
  7526. <p>
  7527. (<em>Appears on:</em>
  7528. <a href="#external-secrets.io/v1.KubernetesProvider">KubernetesProvider</a>)
  7529. </p>
  7530. <p>
  7531. </p>
  7532. <table>
  7533. <thead>
  7534. <tr>
  7535. <th>Field</th>
  7536. <th>Description</th>
  7537. </tr>
  7538. </thead>
  7539. <tbody>
  7540. <tr>
  7541. <td>
  7542. <code>cert</code></br>
  7543. <em>
  7544. <a href="#external-secrets.io/v1.CertAuth">
  7545. CertAuth
  7546. </a>
  7547. </em>
  7548. </td>
  7549. <td>
  7550. <em>(Optional)</em>
  7551. <p>has both clientCert and clientKey as secretKeySelector</p>
  7552. </td>
  7553. </tr>
  7554. <tr>
  7555. <td>
  7556. <code>token</code></br>
  7557. <em>
  7558. <a href="#external-secrets.io/v1.TokenAuth">
  7559. TokenAuth
  7560. </a>
  7561. </em>
  7562. </td>
  7563. <td>
  7564. <em>(Optional)</em>
  7565. <p>use static token to authenticate with</p>
  7566. </td>
  7567. </tr>
  7568. <tr>
  7569. <td>
  7570. <code>serviceAccount</code></br>
  7571. <em>
  7572. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  7573. External Secrets meta/v1.ServiceAccountSelector
  7574. </a>
  7575. </em>
  7576. </td>
  7577. <td>
  7578. <em>(Optional)</em>
  7579. <p>points to a service account that should be used for authentication</p>
  7580. </td>
  7581. </tr>
  7582. </tbody>
  7583. </table>
  7584. <h3 id="external-secrets.io/v1.KubernetesAuthCredentials">KubernetesAuthCredentials
  7585. </h3>
  7586. <p>
  7587. (<em>Appears on:</em>
  7588. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  7589. </p>
  7590. <p>
  7591. </p>
  7592. <table>
  7593. <thead>
  7594. <tr>
  7595. <th>Field</th>
  7596. <th>Description</th>
  7597. </tr>
  7598. </thead>
  7599. <tbody>
  7600. <tr>
  7601. <td>
  7602. <code>identityId</code></br>
  7603. <em>
  7604. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7605. External Secrets meta/v1.SecretKeySelector
  7606. </a>
  7607. </em>
  7608. </td>
  7609. <td>
  7610. </td>
  7611. </tr>
  7612. <tr>
  7613. <td>
  7614. <code>serviceAccountTokenPath</code></br>
  7615. <em>
  7616. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7617. External Secrets meta/v1.SecretKeySelector
  7618. </a>
  7619. </em>
  7620. </td>
  7621. <td>
  7622. <em>(Optional)</em>
  7623. </td>
  7624. </tr>
  7625. </tbody>
  7626. </table>
  7627. <h3 id="external-secrets.io/v1.KubernetesProvider">KubernetesProvider
  7628. </h3>
  7629. <p>
  7630. (<em>Appears on:</em>
  7631. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7632. </p>
  7633. <p>
  7634. <p>Configures a store to sync secrets with a Kubernetes instance.</p>
  7635. </p>
  7636. <table>
  7637. <thead>
  7638. <tr>
  7639. <th>Field</th>
  7640. <th>Description</th>
  7641. </tr>
  7642. </thead>
  7643. <tbody>
  7644. <tr>
  7645. <td>
  7646. <code>server</code></br>
  7647. <em>
  7648. <a href="#external-secrets.io/v1.KubernetesServer">
  7649. KubernetesServer
  7650. </a>
  7651. </em>
  7652. </td>
  7653. <td>
  7654. <em>(Optional)</em>
  7655. <p>configures the Kubernetes server Address.</p>
  7656. </td>
  7657. </tr>
  7658. <tr>
  7659. <td>
  7660. <code>auth</code></br>
  7661. <em>
  7662. <a href="#external-secrets.io/v1.KubernetesAuth">
  7663. KubernetesAuth
  7664. </a>
  7665. </em>
  7666. </td>
  7667. <td>
  7668. <em>(Optional)</em>
  7669. <p>Auth configures how secret-manager authenticates with a Kubernetes instance.</p>
  7670. </td>
  7671. </tr>
  7672. <tr>
  7673. <td>
  7674. <code>authRef</code></br>
  7675. <em>
  7676. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7677. External Secrets meta/v1.SecretKeySelector
  7678. </a>
  7679. </em>
  7680. </td>
  7681. <td>
  7682. <em>(Optional)</em>
  7683. <p>A reference to a secret that contains the auth information.</p>
  7684. </td>
  7685. </tr>
  7686. <tr>
  7687. <td>
  7688. <code>remoteNamespace</code></br>
  7689. <em>
  7690. string
  7691. </em>
  7692. </td>
  7693. <td>
  7694. <em>(Optional)</em>
  7695. <p>Remote namespace to fetch the secrets from</p>
  7696. </td>
  7697. </tr>
  7698. </tbody>
  7699. </table>
  7700. <h3 id="external-secrets.io/v1.KubernetesServer">KubernetesServer
  7701. </h3>
  7702. <p>
  7703. (<em>Appears on:</em>
  7704. <a href="#external-secrets.io/v1.KubernetesProvider">KubernetesProvider</a>)
  7705. </p>
  7706. <p>
  7707. </p>
  7708. <table>
  7709. <thead>
  7710. <tr>
  7711. <th>Field</th>
  7712. <th>Description</th>
  7713. </tr>
  7714. </thead>
  7715. <tbody>
  7716. <tr>
  7717. <td>
  7718. <code>url</code></br>
  7719. <em>
  7720. string
  7721. </em>
  7722. </td>
  7723. <td>
  7724. <em>(Optional)</em>
  7725. <p>configures the Kubernetes server Address.</p>
  7726. </td>
  7727. </tr>
  7728. <tr>
  7729. <td>
  7730. <code>caBundle</code></br>
  7731. <em>
  7732. []byte
  7733. </em>
  7734. </td>
  7735. <td>
  7736. <em>(Optional)</em>
  7737. <p>CABundle is a base64-encoded CA certificate</p>
  7738. </td>
  7739. </tr>
  7740. <tr>
  7741. <td>
  7742. <code>caProvider</code></br>
  7743. <em>
  7744. <a href="#external-secrets.io/v1.CAProvider">
  7745. CAProvider
  7746. </a>
  7747. </em>
  7748. </td>
  7749. <td>
  7750. <em>(Optional)</em>
  7751. <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>
  7752. </td>
  7753. </tr>
  7754. </tbody>
  7755. </table>
  7756. <h3 id="external-secrets.io/v1.LdapAuthCredentials">LdapAuthCredentials
  7757. </h3>
  7758. <p>
  7759. (<em>Appears on:</em>
  7760. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  7761. </p>
  7762. <p>
  7763. </p>
  7764. <table>
  7765. <thead>
  7766. <tr>
  7767. <th>Field</th>
  7768. <th>Description</th>
  7769. </tr>
  7770. </thead>
  7771. <tbody>
  7772. <tr>
  7773. <td>
  7774. <code>identityId</code></br>
  7775. <em>
  7776. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7777. External Secrets meta/v1.SecretKeySelector
  7778. </a>
  7779. </em>
  7780. </td>
  7781. <td>
  7782. </td>
  7783. </tr>
  7784. <tr>
  7785. <td>
  7786. <code>ldapPassword</code></br>
  7787. <em>
  7788. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7789. External Secrets meta/v1.SecretKeySelector
  7790. </a>
  7791. </em>
  7792. </td>
  7793. <td>
  7794. </td>
  7795. </tr>
  7796. <tr>
  7797. <td>
  7798. <code>ldapUsername</code></br>
  7799. <em>
  7800. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7801. External Secrets meta/v1.SecretKeySelector
  7802. </a>
  7803. </em>
  7804. </td>
  7805. <td>
  7806. </td>
  7807. </tr>
  7808. </tbody>
  7809. </table>
  7810. <h3 id="external-secrets.io/v1.MachineIdentityScopeInWorkspace">MachineIdentityScopeInWorkspace
  7811. </h3>
  7812. <p>
  7813. (<em>Appears on:</em>
  7814. <a href="#external-secrets.io/v1.InfisicalProvider">InfisicalProvider</a>)
  7815. </p>
  7816. <p>
  7817. </p>
  7818. <table>
  7819. <thead>
  7820. <tr>
  7821. <th>Field</th>
  7822. <th>Description</th>
  7823. </tr>
  7824. </thead>
  7825. <tbody>
  7826. <tr>
  7827. <td>
  7828. <code>secretsPath</code></br>
  7829. <em>
  7830. string
  7831. </em>
  7832. </td>
  7833. <td>
  7834. <em>(Optional)</em>
  7835. <p>SecretsPath specifies the path to the secrets within the workspace. Defaults to &ldquo;/&rdquo; if not provided.</p>
  7836. </td>
  7837. </tr>
  7838. <tr>
  7839. <td>
  7840. <code>recursive</code></br>
  7841. <em>
  7842. bool
  7843. </em>
  7844. </td>
  7845. <td>
  7846. <em>(Optional)</em>
  7847. <p>Recursive indicates whether the secrets should be fetched recursively. Defaults to false if not provided.</p>
  7848. </td>
  7849. </tr>
  7850. <tr>
  7851. <td>
  7852. <code>environmentSlug</code></br>
  7853. <em>
  7854. string
  7855. </em>
  7856. </td>
  7857. <td>
  7858. <p>EnvironmentSlug is the required slug identifier for the environment.</p>
  7859. </td>
  7860. </tr>
  7861. <tr>
  7862. <td>
  7863. <code>projectSlug</code></br>
  7864. <em>
  7865. string
  7866. </em>
  7867. </td>
  7868. <td>
  7869. <p>ProjectSlug is the required slug identifier for the project.</p>
  7870. </td>
  7871. </tr>
  7872. <tr>
  7873. <td>
  7874. <code>expandSecretReferences</code></br>
  7875. <em>
  7876. bool
  7877. </em>
  7878. </td>
  7879. <td>
  7880. <em>(Optional)</em>
  7881. <p>ExpandSecretReferences indicates whether secret references should be expanded. Defaults to true if not provided.</p>
  7882. </td>
  7883. </tr>
  7884. </tbody>
  7885. </table>
  7886. <h3 id="external-secrets.io/v1.MaintenanceStatus">MaintenanceStatus
  7887. (<code>bool</code> alias)</p></h3>
  7888. <p>
  7889. </p>
  7890. <table>
  7891. <thead>
  7892. <tr>
  7893. <th>Value</th>
  7894. <th>Description</th>
  7895. </tr>
  7896. </thead>
  7897. <tbody><tr><td><p>true</p></td>
  7898. <td></td>
  7899. </tr><tr><td><p>false</p></td>
  7900. <td></td>
  7901. </tr></tbody>
  7902. </table>
  7903. <h3 id="external-secrets.io/v1.NTLMProtocol">NTLMProtocol
  7904. </h3>
  7905. <p>
  7906. (<em>Appears on:</em>
  7907. <a href="#external-secrets.io/v1.AuthorizationProtocol">AuthorizationProtocol</a>)
  7908. </p>
  7909. <p>
  7910. <p>NTLMProtocol contains the NTLM-specific configuration.</p>
  7911. </p>
  7912. <table>
  7913. <thead>
  7914. <tr>
  7915. <th>Field</th>
  7916. <th>Description</th>
  7917. </tr>
  7918. </thead>
  7919. <tbody>
  7920. <tr>
  7921. <td>
  7922. <code>usernameSecret</code></br>
  7923. <em>
  7924. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7925. External Secrets meta/v1.SecretKeySelector
  7926. </a>
  7927. </em>
  7928. </td>
  7929. <td>
  7930. </td>
  7931. </tr>
  7932. <tr>
  7933. <td>
  7934. <code>passwordSecret</code></br>
  7935. <em>
  7936. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7937. External Secrets meta/v1.SecretKeySelector
  7938. </a>
  7939. </em>
  7940. </td>
  7941. <td>
  7942. </td>
  7943. </tr>
  7944. </tbody>
  7945. </table>
  7946. <h3 id="external-secrets.io/v1.NoSecretError">NoSecretError
  7947. </h3>
  7948. <p>
  7949. <p>NoSecretError shall be returned when a GetSecret can not find the
  7950. desired secret. This is used for deletionPolicy.</p>
  7951. </p>
  7952. <h3 id="external-secrets.io/v1.NotModifiedError">NotModifiedError
  7953. </h3>
  7954. <p>
  7955. <p>NotModifiedError to signal that the webhook received no changes,
  7956. and it should just return without doing anything.</p>
  7957. </p>
  7958. <h3 id="external-secrets.io/v1.OciAuthCredentials">OciAuthCredentials
  7959. </h3>
  7960. <p>
  7961. (<em>Appears on:</em>
  7962. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  7963. </p>
  7964. <p>
  7965. </p>
  7966. <table>
  7967. <thead>
  7968. <tr>
  7969. <th>Field</th>
  7970. <th>Description</th>
  7971. </tr>
  7972. </thead>
  7973. <tbody>
  7974. <tr>
  7975. <td>
  7976. <code>identityId</code></br>
  7977. <em>
  7978. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7979. External Secrets meta/v1.SecretKeySelector
  7980. </a>
  7981. </em>
  7982. </td>
  7983. <td>
  7984. </td>
  7985. </tr>
  7986. <tr>
  7987. <td>
  7988. <code>privateKey</code></br>
  7989. <em>
  7990. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7991. External Secrets meta/v1.SecretKeySelector
  7992. </a>
  7993. </em>
  7994. </td>
  7995. <td>
  7996. </td>
  7997. </tr>
  7998. <tr>
  7999. <td>
  8000. <code>privateKeyPassphrase</code></br>
  8001. <em>
  8002. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8003. External Secrets meta/v1.SecretKeySelector
  8004. </a>
  8005. </em>
  8006. </td>
  8007. <td>
  8008. <em>(Optional)</em>
  8009. </td>
  8010. </tr>
  8011. <tr>
  8012. <td>
  8013. <code>fingerprint</code></br>
  8014. <em>
  8015. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8016. External Secrets meta/v1.SecretKeySelector
  8017. </a>
  8018. </em>
  8019. </td>
  8020. <td>
  8021. </td>
  8022. </tr>
  8023. <tr>
  8024. <td>
  8025. <code>userId</code></br>
  8026. <em>
  8027. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8028. External Secrets meta/v1.SecretKeySelector
  8029. </a>
  8030. </em>
  8031. </td>
  8032. <td>
  8033. </td>
  8034. </tr>
  8035. <tr>
  8036. <td>
  8037. <code>tenancyId</code></br>
  8038. <em>
  8039. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8040. External Secrets meta/v1.SecretKeySelector
  8041. </a>
  8042. </em>
  8043. </td>
  8044. <td>
  8045. </td>
  8046. </tr>
  8047. <tr>
  8048. <td>
  8049. <code>region</code></br>
  8050. <em>
  8051. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8052. External Secrets meta/v1.SecretKeySelector
  8053. </a>
  8054. </em>
  8055. </td>
  8056. <td>
  8057. </td>
  8058. </tr>
  8059. </tbody>
  8060. </table>
  8061. <h3 id="external-secrets.io/v1.OnboardbaseAuthSecretRef">OnboardbaseAuthSecretRef
  8062. </h3>
  8063. <p>
  8064. (<em>Appears on:</em>
  8065. <a href="#external-secrets.io/v1.OnboardbaseProvider">OnboardbaseProvider</a>)
  8066. </p>
  8067. <p>
  8068. <p>OnboardbaseAuthSecretRef holds secret references for onboardbase API Key credentials.</p>
  8069. </p>
  8070. <table>
  8071. <thead>
  8072. <tr>
  8073. <th>Field</th>
  8074. <th>Description</th>
  8075. </tr>
  8076. </thead>
  8077. <tbody>
  8078. <tr>
  8079. <td>
  8080. <code>apiKeyRef</code></br>
  8081. <em>
  8082. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8083. External Secrets meta/v1.SecretKeySelector
  8084. </a>
  8085. </em>
  8086. </td>
  8087. <td>
  8088. <p>OnboardbaseAPIKey is the APIKey generated by an admin account.
  8089. It is used to recognize and authorize access to a project and environment within onboardbase</p>
  8090. </td>
  8091. </tr>
  8092. <tr>
  8093. <td>
  8094. <code>passcodeRef</code></br>
  8095. <em>
  8096. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8097. External Secrets meta/v1.SecretKeySelector
  8098. </a>
  8099. </em>
  8100. </td>
  8101. <td>
  8102. <p>OnboardbasePasscode is the passcode attached to the API Key</p>
  8103. </td>
  8104. </tr>
  8105. </tbody>
  8106. </table>
  8107. <h3 id="external-secrets.io/v1.OnboardbaseProvider">OnboardbaseProvider
  8108. </h3>
  8109. <p>
  8110. (<em>Appears on:</em>
  8111. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8112. </p>
  8113. <p>
  8114. <p>OnboardbaseProvider configures a store to sync secrets using the Onboardbase provider.
  8115. Project and Config are required if not using a Service Token.</p>
  8116. </p>
  8117. <table>
  8118. <thead>
  8119. <tr>
  8120. <th>Field</th>
  8121. <th>Description</th>
  8122. </tr>
  8123. </thead>
  8124. <tbody>
  8125. <tr>
  8126. <td>
  8127. <code>auth</code></br>
  8128. <em>
  8129. <a href="#external-secrets.io/v1.OnboardbaseAuthSecretRef">
  8130. OnboardbaseAuthSecretRef
  8131. </a>
  8132. </em>
  8133. </td>
  8134. <td>
  8135. <p>Auth configures how the Operator authenticates with the Onboardbase API</p>
  8136. </td>
  8137. </tr>
  8138. <tr>
  8139. <td>
  8140. <code>apiHost</code></br>
  8141. <em>
  8142. string
  8143. </em>
  8144. </td>
  8145. <td>
  8146. <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>
  8147. </td>
  8148. </tr>
  8149. <tr>
  8150. <td>
  8151. <code>project</code></br>
  8152. <em>
  8153. string
  8154. </em>
  8155. </td>
  8156. <td>
  8157. <p>Project is an onboardbase project that the secrets should be pulled from</p>
  8158. </td>
  8159. </tr>
  8160. <tr>
  8161. <td>
  8162. <code>environment</code></br>
  8163. <em>
  8164. string
  8165. </em>
  8166. </td>
  8167. <td>
  8168. <p>Environment is the name of an environmnent within a project to pull the secrets from</p>
  8169. </td>
  8170. </tr>
  8171. </tbody>
  8172. </table>
  8173. <h3 id="external-secrets.io/v1.OnePasswordAuth">OnePasswordAuth
  8174. </h3>
  8175. <p>
  8176. (<em>Appears on:</em>
  8177. <a href="#external-secrets.io/v1.OnePasswordProvider">OnePasswordProvider</a>)
  8178. </p>
  8179. <p>
  8180. <p>OnePasswordAuth contains a secretRef for credentials.</p>
  8181. </p>
  8182. <table>
  8183. <thead>
  8184. <tr>
  8185. <th>Field</th>
  8186. <th>Description</th>
  8187. </tr>
  8188. </thead>
  8189. <tbody>
  8190. <tr>
  8191. <td>
  8192. <code>secretRef</code></br>
  8193. <em>
  8194. <a href="#external-secrets.io/v1.OnePasswordAuthSecretRef">
  8195. OnePasswordAuthSecretRef
  8196. </a>
  8197. </em>
  8198. </td>
  8199. <td>
  8200. </td>
  8201. </tr>
  8202. </tbody>
  8203. </table>
  8204. <h3 id="external-secrets.io/v1.OnePasswordAuthSecretRef">OnePasswordAuthSecretRef
  8205. </h3>
  8206. <p>
  8207. (<em>Appears on:</em>
  8208. <a href="#external-secrets.io/v1.OnePasswordAuth">OnePasswordAuth</a>)
  8209. </p>
  8210. <p>
  8211. <p>OnePasswordAuthSecretRef holds secret references for 1Password credentials.</p>
  8212. </p>
  8213. <table>
  8214. <thead>
  8215. <tr>
  8216. <th>Field</th>
  8217. <th>Description</th>
  8218. </tr>
  8219. </thead>
  8220. <tbody>
  8221. <tr>
  8222. <td>
  8223. <code>connectTokenSecretRef</code></br>
  8224. <em>
  8225. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8226. External Secrets meta/v1.SecretKeySelector
  8227. </a>
  8228. </em>
  8229. </td>
  8230. <td>
  8231. <p>The ConnectToken is used for authentication to a 1Password Connect Server.</p>
  8232. </td>
  8233. </tr>
  8234. </tbody>
  8235. </table>
  8236. <h3 id="external-secrets.io/v1.OnePasswordProvider">OnePasswordProvider
  8237. </h3>
  8238. <p>
  8239. (<em>Appears on:</em>
  8240. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8241. </p>
  8242. <p>
  8243. <p>OnePasswordProvider configures a store to sync secrets using the 1Password Secret Manager provider.</p>
  8244. </p>
  8245. <table>
  8246. <thead>
  8247. <tr>
  8248. <th>Field</th>
  8249. <th>Description</th>
  8250. </tr>
  8251. </thead>
  8252. <tbody>
  8253. <tr>
  8254. <td>
  8255. <code>auth</code></br>
  8256. <em>
  8257. <a href="#external-secrets.io/v1.OnePasswordAuth">
  8258. OnePasswordAuth
  8259. </a>
  8260. </em>
  8261. </td>
  8262. <td>
  8263. <p>Auth defines the information necessary to authenticate against OnePassword Connect Server</p>
  8264. </td>
  8265. </tr>
  8266. <tr>
  8267. <td>
  8268. <code>connectHost</code></br>
  8269. <em>
  8270. string
  8271. </em>
  8272. </td>
  8273. <td>
  8274. <p>ConnectHost defines the OnePassword Connect Server to connect to</p>
  8275. </td>
  8276. </tr>
  8277. <tr>
  8278. <td>
  8279. <code>vaults</code></br>
  8280. <em>
  8281. map[string]int
  8282. </em>
  8283. </td>
  8284. <td>
  8285. <p>Vaults defines which OnePassword vaults to search in which order</p>
  8286. </td>
  8287. </tr>
  8288. </tbody>
  8289. </table>
  8290. <h3 id="external-secrets.io/v1.OnePasswordSDKAuth">OnePasswordSDKAuth
  8291. </h3>
  8292. <p>
  8293. (<em>Appears on:</em>
  8294. <a href="#external-secrets.io/v1.OnePasswordSDKProvider">OnePasswordSDKProvider</a>)
  8295. </p>
  8296. <p>
  8297. <p>OnePasswordSDKAuth contains a secretRef for the service account token.</p>
  8298. </p>
  8299. <table>
  8300. <thead>
  8301. <tr>
  8302. <th>Field</th>
  8303. <th>Description</th>
  8304. </tr>
  8305. </thead>
  8306. <tbody>
  8307. <tr>
  8308. <td>
  8309. <code>serviceAccountSecretRef</code></br>
  8310. <em>
  8311. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8312. External Secrets meta/v1.SecretKeySelector
  8313. </a>
  8314. </em>
  8315. </td>
  8316. <td>
  8317. <p>ServiceAccountSecretRef points to the secret containing the token to access 1Password vault.</p>
  8318. </td>
  8319. </tr>
  8320. </tbody>
  8321. </table>
  8322. <h3 id="external-secrets.io/v1.OnePasswordSDKProvider">OnePasswordSDKProvider
  8323. </h3>
  8324. <p>
  8325. (<em>Appears on:</em>
  8326. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8327. </p>
  8328. <p>
  8329. <p>OnePasswordSDKProvider configures a store to sync secrets using the 1Password sdk.</p>
  8330. </p>
  8331. <table>
  8332. <thead>
  8333. <tr>
  8334. <th>Field</th>
  8335. <th>Description</th>
  8336. </tr>
  8337. </thead>
  8338. <tbody>
  8339. <tr>
  8340. <td>
  8341. <code>vault</code></br>
  8342. <em>
  8343. string
  8344. </em>
  8345. </td>
  8346. <td>
  8347. <p>Vault defines the vault&rsquo;s name or uuid to access. Do NOT add op:// prefix. This will be done automatically.</p>
  8348. </td>
  8349. </tr>
  8350. <tr>
  8351. <td>
  8352. <code>integrationInfo</code></br>
  8353. <em>
  8354. <a href="#external-secrets.io/v1.IntegrationInfo">
  8355. IntegrationInfo
  8356. </a>
  8357. </em>
  8358. </td>
  8359. <td>
  8360. <em>(Optional)</em>
  8361. <p>IntegrationInfo specifies the name and version of the integration built using the 1Password Go SDK.
  8362. If you don&rsquo;t know which name and version to use, use <code>DefaultIntegrationName</code> and <code>DefaultIntegrationVersion</code>, respectively.</p>
  8363. </td>
  8364. </tr>
  8365. <tr>
  8366. <td>
  8367. <code>auth</code></br>
  8368. <em>
  8369. <a href="#external-secrets.io/v1.OnePasswordSDKAuth">
  8370. OnePasswordSDKAuth
  8371. </a>
  8372. </em>
  8373. </td>
  8374. <td>
  8375. <p>Auth defines the information necessary to authenticate against OnePassword API.</p>
  8376. </td>
  8377. </tr>
  8378. </tbody>
  8379. </table>
  8380. <h3 id="external-secrets.io/v1.OracleAuth">OracleAuth
  8381. </h3>
  8382. <p>
  8383. (<em>Appears on:</em>
  8384. <a href="#external-secrets.io/v1.OracleProvider">OracleProvider</a>)
  8385. </p>
  8386. <p>
  8387. </p>
  8388. <table>
  8389. <thead>
  8390. <tr>
  8391. <th>Field</th>
  8392. <th>Description</th>
  8393. </tr>
  8394. </thead>
  8395. <tbody>
  8396. <tr>
  8397. <td>
  8398. <code>tenancy</code></br>
  8399. <em>
  8400. string
  8401. </em>
  8402. </td>
  8403. <td>
  8404. <p>Tenancy is the tenancy OCID where user is located.</p>
  8405. </td>
  8406. </tr>
  8407. <tr>
  8408. <td>
  8409. <code>user</code></br>
  8410. <em>
  8411. string
  8412. </em>
  8413. </td>
  8414. <td>
  8415. <p>User is an access OCID specific to the account.</p>
  8416. </td>
  8417. </tr>
  8418. <tr>
  8419. <td>
  8420. <code>secretRef</code></br>
  8421. <em>
  8422. <a href="#external-secrets.io/v1.OracleSecretRef">
  8423. OracleSecretRef
  8424. </a>
  8425. </em>
  8426. </td>
  8427. <td>
  8428. <p>SecretRef to pass through sensitive information.</p>
  8429. </td>
  8430. </tr>
  8431. </tbody>
  8432. </table>
  8433. <h3 id="external-secrets.io/v1.OraclePrincipalType">OraclePrincipalType
  8434. (<code>string</code> alias)</p></h3>
  8435. <p>
  8436. (<em>Appears on:</em>
  8437. <a href="#external-secrets.io/v1.OracleProvider">OracleProvider</a>)
  8438. </p>
  8439. <p>
  8440. </p>
  8441. <table>
  8442. <thead>
  8443. <tr>
  8444. <th>Value</th>
  8445. <th>Description</th>
  8446. </tr>
  8447. </thead>
  8448. <tbody><tr><td><p>&#34;InstancePrincipal&#34;</p></td>
  8449. <td><p>InstancePrincipal represents a instance principal.</p>
  8450. </td>
  8451. </tr><tr><td><p>&#34;UserPrincipal&#34;</p></td>
  8452. <td><p>UserPrincipal represents a user principal.</p>
  8453. </td>
  8454. </tr><tr><td><p>&#34;Workload&#34;</p></td>
  8455. <td><p>WorkloadPrincipal represents a workload principal.</p>
  8456. </td>
  8457. </tr></tbody>
  8458. </table>
  8459. <h3 id="external-secrets.io/v1.OracleProvider">OracleProvider
  8460. </h3>
  8461. <p>
  8462. (<em>Appears on:</em>
  8463. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8464. </p>
  8465. <p>
  8466. <p>Configures an store to sync secrets using a Oracle Vault
  8467. backend.</p>
  8468. </p>
  8469. <table>
  8470. <thead>
  8471. <tr>
  8472. <th>Field</th>
  8473. <th>Description</th>
  8474. </tr>
  8475. </thead>
  8476. <tbody>
  8477. <tr>
  8478. <td>
  8479. <code>region</code></br>
  8480. <em>
  8481. string
  8482. </em>
  8483. </td>
  8484. <td>
  8485. <p>Region is the region where vault is located.</p>
  8486. </td>
  8487. </tr>
  8488. <tr>
  8489. <td>
  8490. <code>vault</code></br>
  8491. <em>
  8492. string
  8493. </em>
  8494. </td>
  8495. <td>
  8496. <p>Vault is the vault&rsquo;s OCID of the specific vault where secret is located.</p>
  8497. </td>
  8498. </tr>
  8499. <tr>
  8500. <td>
  8501. <code>compartment</code></br>
  8502. <em>
  8503. string
  8504. </em>
  8505. </td>
  8506. <td>
  8507. <em>(Optional)</em>
  8508. <p>Compartment is the vault compartment OCID.
  8509. Required for PushSecret</p>
  8510. </td>
  8511. </tr>
  8512. <tr>
  8513. <td>
  8514. <code>encryptionKey</code></br>
  8515. <em>
  8516. string
  8517. </em>
  8518. </td>
  8519. <td>
  8520. <em>(Optional)</em>
  8521. <p>EncryptionKey is the OCID of the encryption key within the vault.
  8522. Required for PushSecret</p>
  8523. </td>
  8524. </tr>
  8525. <tr>
  8526. <td>
  8527. <code>principalType</code></br>
  8528. <em>
  8529. <a href="#external-secrets.io/v1.OraclePrincipalType">
  8530. OraclePrincipalType
  8531. </a>
  8532. </em>
  8533. </td>
  8534. <td>
  8535. <em>(Optional)</em>
  8536. <p>The type of principal to use for authentication. If left blank, the Auth struct will
  8537. determine the principal type. This optional field must be specified if using
  8538. workload identity.</p>
  8539. </td>
  8540. </tr>
  8541. <tr>
  8542. <td>
  8543. <code>auth</code></br>
  8544. <em>
  8545. <a href="#external-secrets.io/v1.OracleAuth">
  8546. OracleAuth
  8547. </a>
  8548. </em>
  8549. </td>
  8550. <td>
  8551. <em>(Optional)</em>
  8552. <p>Auth configures how secret-manager authenticates with the Oracle Vault.
  8553. If empty, use the instance principal, otherwise the user credentials specified in Auth.</p>
  8554. </td>
  8555. </tr>
  8556. <tr>
  8557. <td>
  8558. <code>serviceAccountRef</code></br>
  8559. <em>
  8560. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  8561. External Secrets meta/v1.ServiceAccountSelector
  8562. </a>
  8563. </em>
  8564. </td>
  8565. <td>
  8566. <em>(Optional)</em>
  8567. <p>ServiceAccountRef specified the service account
  8568. that should be used when authenticating with WorkloadIdentity.</p>
  8569. </td>
  8570. </tr>
  8571. </tbody>
  8572. </table>
  8573. <h3 id="external-secrets.io/v1.OracleSecretRef">OracleSecretRef
  8574. </h3>
  8575. <p>
  8576. (<em>Appears on:</em>
  8577. <a href="#external-secrets.io/v1.OracleAuth">OracleAuth</a>)
  8578. </p>
  8579. <p>
  8580. </p>
  8581. <table>
  8582. <thead>
  8583. <tr>
  8584. <th>Field</th>
  8585. <th>Description</th>
  8586. </tr>
  8587. </thead>
  8588. <tbody>
  8589. <tr>
  8590. <td>
  8591. <code>privatekey</code></br>
  8592. <em>
  8593. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8594. External Secrets meta/v1.SecretKeySelector
  8595. </a>
  8596. </em>
  8597. </td>
  8598. <td>
  8599. <p>PrivateKey is the user&rsquo;s API Signing Key in PEM format, used for authentication.</p>
  8600. </td>
  8601. </tr>
  8602. <tr>
  8603. <td>
  8604. <code>fingerprint</code></br>
  8605. <em>
  8606. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8607. External Secrets meta/v1.SecretKeySelector
  8608. </a>
  8609. </em>
  8610. </td>
  8611. <td>
  8612. <p>Fingerprint is the fingerprint of the API private key.</p>
  8613. </td>
  8614. </tr>
  8615. </tbody>
  8616. </table>
  8617. <h3 id="external-secrets.io/v1.PassboltAuth">PassboltAuth
  8618. </h3>
  8619. <p>
  8620. (<em>Appears on:</em>
  8621. <a href="#external-secrets.io/v1.PassboltProvider">PassboltProvider</a>)
  8622. </p>
  8623. <p>
  8624. <p>Passbolt contains a secretRef for the passbolt credentials.</p>
  8625. </p>
  8626. <table>
  8627. <thead>
  8628. <tr>
  8629. <th>Field</th>
  8630. <th>Description</th>
  8631. </tr>
  8632. </thead>
  8633. <tbody>
  8634. <tr>
  8635. <td>
  8636. <code>passwordSecretRef</code></br>
  8637. <em>
  8638. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8639. External Secrets meta/v1.SecretKeySelector
  8640. </a>
  8641. </em>
  8642. </td>
  8643. <td>
  8644. </td>
  8645. </tr>
  8646. <tr>
  8647. <td>
  8648. <code>privateKeySecretRef</code></br>
  8649. <em>
  8650. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8651. External Secrets meta/v1.SecretKeySelector
  8652. </a>
  8653. </em>
  8654. </td>
  8655. <td>
  8656. </td>
  8657. </tr>
  8658. </tbody>
  8659. </table>
  8660. <h3 id="external-secrets.io/v1.PassboltProvider">PassboltProvider
  8661. </h3>
  8662. <p>
  8663. (<em>Appears on:</em>
  8664. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8665. </p>
  8666. <p>
  8667. </p>
  8668. <table>
  8669. <thead>
  8670. <tr>
  8671. <th>Field</th>
  8672. <th>Description</th>
  8673. </tr>
  8674. </thead>
  8675. <tbody>
  8676. <tr>
  8677. <td>
  8678. <code>auth</code></br>
  8679. <em>
  8680. <a href="#external-secrets.io/v1.PassboltAuth">
  8681. PassboltAuth
  8682. </a>
  8683. </em>
  8684. </td>
  8685. <td>
  8686. <p>Auth defines the information necessary to authenticate against Passbolt Server</p>
  8687. </td>
  8688. </tr>
  8689. <tr>
  8690. <td>
  8691. <code>host</code></br>
  8692. <em>
  8693. string
  8694. </em>
  8695. </td>
  8696. <td>
  8697. <p>Host defines the Passbolt Server to connect to</p>
  8698. </td>
  8699. </tr>
  8700. </tbody>
  8701. </table>
  8702. <h3 id="external-secrets.io/v1.PasswordDepotAuth">PasswordDepotAuth
  8703. </h3>
  8704. <p>
  8705. (<em>Appears on:</em>
  8706. <a href="#external-secrets.io/v1.PasswordDepotProvider">PasswordDepotProvider</a>)
  8707. </p>
  8708. <p>
  8709. </p>
  8710. <table>
  8711. <thead>
  8712. <tr>
  8713. <th>Field</th>
  8714. <th>Description</th>
  8715. </tr>
  8716. </thead>
  8717. <tbody>
  8718. <tr>
  8719. <td>
  8720. <code>secretRef</code></br>
  8721. <em>
  8722. <a href="#external-secrets.io/v1.PasswordDepotSecretRef">
  8723. PasswordDepotSecretRef
  8724. </a>
  8725. </em>
  8726. </td>
  8727. <td>
  8728. </td>
  8729. </tr>
  8730. </tbody>
  8731. </table>
  8732. <h3 id="external-secrets.io/v1.PasswordDepotProvider">PasswordDepotProvider
  8733. </h3>
  8734. <p>
  8735. (<em>Appears on:</em>
  8736. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8737. </p>
  8738. <p>
  8739. <p>Configures a store to sync secrets with a Password Depot instance.</p>
  8740. </p>
  8741. <table>
  8742. <thead>
  8743. <tr>
  8744. <th>Field</th>
  8745. <th>Description</th>
  8746. </tr>
  8747. </thead>
  8748. <tbody>
  8749. <tr>
  8750. <td>
  8751. <code>host</code></br>
  8752. <em>
  8753. string
  8754. </em>
  8755. </td>
  8756. <td>
  8757. <p>URL configures the Password Depot instance URL.</p>
  8758. </td>
  8759. </tr>
  8760. <tr>
  8761. <td>
  8762. <code>database</code></br>
  8763. <em>
  8764. string
  8765. </em>
  8766. </td>
  8767. <td>
  8768. <p>Database to use as source</p>
  8769. </td>
  8770. </tr>
  8771. <tr>
  8772. <td>
  8773. <code>auth</code></br>
  8774. <em>
  8775. <a href="#external-secrets.io/v1.PasswordDepotAuth">
  8776. PasswordDepotAuth
  8777. </a>
  8778. </em>
  8779. </td>
  8780. <td>
  8781. <p>Auth configures how secret-manager authenticates with a Password Depot instance.</p>
  8782. </td>
  8783. </tr>
  8784. </tbody>
  8785. </table>
  8786. <h3 id="external-secrets.io/v1.PasswordDepotSecretRef">PasswordDepotSecretRef
  8787. </h3>
  8788. <p>
  8789. (<em>Appears on:</em>
  8790. <a href="#external-secrets.io/v1.PasswordDepotAuth">PasswordDepotAuth</a>)
  8791. </p>
  8792. <p>
  8793. </p>
  8794. <table>
  8795. <thead>
  8796. <tr>
  8797. <th>Field</th>
  8798. <th>Description</th>
  8799. </tr>
  8800. </thead>
  8801. <tbody>
  8802. <tr>
  8803. <td>
  8804. <code>credentials</code></br>
  8805. <em>
  8806. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8807. External Secrets meta/v1.SecretKeySelector
  8808. </a>
  8809. </em>
  8810. </td>
  8811. <td>
  8812. <em>(Optional)</em>
  8813. <p>Username / Password is used for authentication.</p>
  8814. </td>
  8815. </tr>
  8816. </tbody>
  8817. </table>
  8818. <h3 id="external-secrets.io/v1.PreviderAuth">PreviderAuth
  8819. </h3>
  8820. <p>
  8821. (<em>Appears on:</em>
  8822. <a href="#external-secrets.io/v1.PreviderProvider">PreviderProvider</a>)
  8823. </p>
  8824. <p>
  8825. <p>PreviderAuth contains a secretRef for credentials.</p>
  8826. </p>
  8827. <table>
  8828. <thead>
  8829. <tr>
  8830. <th>Field</th>
  8831. <th>Description</th>
  8832. </tr>
  8833. </thead>
  8834. <tbody>
  8835. <tr>
  8836. <td>
  8837. <code>secretRef</code></br>
  8838. <em>
  8839. <a href="#external-secrets.io/v1.PreviderAuthSecretRef">
  8840. PreviderAuthSecretRef
  8841. </a>
  8842. </em>
  8843. </td>
  8844. <td>
  8845. <em>(Optional)</em>
  8846. </td>
  8847. </tr>
  8848. </tbody>
  8849. </table>
  8850. <h3 id="external-secrets.io/v1.PreviderAuthSecretRef">PreviderAuthSecretRef
  8851. </h3>
  8852. <p>
  8853. (<em>Appears on:</em>
  8854. <a href="#external-secrets.io/v1.PreviderAuth">PreviderAuth</a>)
  8855. </p>
  8856. <p>
  8857. <p>PreviderAuthSecretRef holds secret references for Previder Vault credentials.</p>
  8858. </p>
  8859. <table>
  8860. <thead>
  8861. <tr>
  8862. <th>Field</th>
  8863. <th>Description</th>
  8864. </tr>
  8865. </thead>
  8866. <tbody>
  8867. <tr>
  8868. <td>
  8869. <code>accessToken</code></br>
  8870. <em>
  8871. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8872. External Secrets meta/v1.SecretKeySelector
  8873. </a>
  8874. </em>
  8875. </td>
  8876. <td>
  8877. <p>The AccessToken is used for authentication</p>
  8878. </td>
  8879. </tr>
  8880. </tbody>
  8881. </table>
  8882. <h3 id="external-secrets.io/v1.PreviderProvider">PreviderProvider
  8883. </h3>
  8884. <p>
  8885. (<em>Appears on:</em>
  8886. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8887. </p>
  8888. <p>
  8889. <p>PreviderProvider configures a store to sync secrets using the Previder Secret Manager provider.</p>
  8890. </p>
  8891. <table>
  8892. <thead>
  8893. <tr>
  8894. <th>Field</th>
  8895. <th>Description</th>
  8896. </tr>
  8897. </thead>
  8898. <tbody>
  8899. <tr>
  8900. <td>
  8901. <code>auth</code></br>
  8902. <em>
  8903. <a href="#external-secrets.io/v1.PreviderAuth">
  8904. PreviderAuth
  8905. </a>
  8906. </em>
  8907. </td>
  8908. <td>
  8909. </td>
  8910. </tr>
  8911. <tr>
  8912. <td>
  8913. <code>baseUri</code></br>
  8914. <em>
  8915. string
  8916. </em>
  8917. </td>
  8918. <td>
  8919. <em>(Optional)</em>
  8920. </td>
  8921. </tr>
  8922. </tbody>
  8923. </table>
  8924. <h3 id="external-secrets.io/v1.Provider">Provider
  8925. </h3>
  8926. <p>
  8927. <p>Provider is a common interface for interacting with secret backends.</p>
  8928. </p>
  8929. <h3 id="external-secrets.io/v1.PulumiProvider">PulumiProvider
  8930. </h3>
  8931. <p>
  8932. (<em>Appears on:</em>
  8933. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8934. </p>
  8935. <p>
  8936. </p>
  8937. <table>
  8938. <thead>
  8939. <tr>
  8940. <th>Field</th>
  8941. <th>Description</th>
  8942. </tr>
  8943. </thead>
  8944. <tbody>
  8945. <tr>
  8946. <td>
  8947. <code>apiUrl</code></br>
  8948. <em>
  8949. string
  8950. </em>
  8951. </td>
  8952. <td>
  8953. <p>APIURL is the URL of the Pulumi API.</p>
  8954. </td>
  8955. </tr>
  8956. <tr>
  8957. <td>
  8958. <code>accessToken</code></br>
  8959. <em>
  8960. <a href="#external-secrets.io/v1.PulumiProviderSecretRef">
  8961. PulumiProviderSecretRef
  8962. </a>
  8963. </em>
  8964. </td>
  8965. <td>
  8966. <p>AccessToken is the access tokens to sign in to the Pulumi Cloud Console.</p>
  8967. </td>
  8968. </tr>
  8969. <tr>
  8970. <td>
  8971. <code>organization</code></br>
  8972. <em>
  8973. string
  8974. </em>
  8975. </td>
  8976. <td>
  8977. <p>Organization are a space to collaborate on shared projects and stacks.
  8978. To create a new organization, visit <a href="https://app.pulumi.com/">https://app.pulumi.com/</a> and click &ldquo;New Organization&rdquo;.</p>
  8979. </td>
  8980. </tr>
  8981. <tr>
  8982. <td>
  8983. <code>project</code></br>
  8984. <em>
  8985. string
  8986. </em>
  8987. </td>
  8988. <td>
  8989. <p>Project is the name of the Pulumi ESC project the environment belongs to.</p>
  8990. </td>
  8991. </tr>
  8992. <tr>
  8993. <td>
  8994. <code>environment</code></br>
  8995. <em>
  8996. string
  8997. </em>
  8998. </td>
  8999. <td>
  9000. <p>Environment are YAML documents composed of static key-value pairs, programmatic expressions,
  9001. dynamically retrieved values from supported providers including all major clouds,
  9002. and other Pulumi ESC environments.
  9003. 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>
  9004. </td>
  9005. </tr>
  9006. </tbody>
  9007. </table>
  9008. <h3 id="external-secrets.io/v1.PulumiProviderSecretRef">PulumiProviderSecretRef
  9009. </h3>
  9010. <p>
  9011. (<em>Appears on:</em>
  9012. <a href="#external-secrets.io/v1.PulumiProvider">PulumiProvider</a>)
  9013. </p>
  9014. <p>
  9015. </p>
  9016. <table>
  9017. <thead>
  9018. <tr>
  9019. <th>Field</th>
  9020. <th>Description</th>
  9021. </tr>
  9022. </thead>
  9023. <tbody>
  9024. <tr>
  9025. <td>
  9026. <code>secretRef</code></br>
  9027. <em>
  9028. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9029. External Secrets meta/v1.SecretKeySelector
  9030. </a>
  9031. </em>
  9032. </td>
  9033. <td>
  9034. <p>SecretRef is a reference to a secret containing the Pulumi API token.</p>
  9035. </td>
  9036. </tr>
  9037. </tbody>
  9038. </table>
  9039. <h3 id="external-secrets.io/v1.PushSecretData">PushSecretData
  9040. </h3>
  9041. <p>
  9042. <p>PushSecretData is an interface to allow using v1alpha1.PushSecretData content in Provider registered in v1.</p>
  9043. </p>
  9044. <h3 id="external-secrets.io/v1.PushSecretRemoteRef">PushSecretRemoteRef
  9045. </h3>
  9046. <p>
  9047. <p>PushSecretRemoteRef is an interface to allow using v1alpha1.PushSecretRemoteRef in Provider registered in v1.</p>
  9048. </p>
  9049. <h3 id="external-secrets.io/v1.ScalewayProvider">ScalewayProvider
  9050. </h3>
  9051. <p>
  9052. (<em>Appears on:</em>
  9053. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  9054. </p>
  9055. <p>
  9056. </p>
  9057. <table>
  9058. <thead>
  9059. <tr>
  9060. <th>Field</th>
  9061. <th>Description</th>
  9062. </tr>
  9063. </thead>
  9064. <tbody>
  9065. <tr>
  9066. <td>
  9067. <code>apiUrl</code></br>
  9068. <em>
  9069. string
  9070. </em>
  9071. </td>
  9072. <td>
  9073. <em>(Optional)</em>
  9074. <p>APIURL is the url of the api to use. Defaults to <a href="https://api.scaleway.com">https://api.scaleway.com</a></p>
  9075. </td>
  9076. </tr>
  9077. <tr>
  9078. <td>
  9079. <code>region</code></br>
  9080. <em>
  9081. string
  9082. </em>
  9083. </td>
  9084. <td>
  9085. <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>
  9086. </td>
  9087. </tr>
  9088. <tr>
  9089. <td>
  9090. <code>projectId</code></br>
  9091. <em>
  9092. string
  9093. </em>
  9094. </td>
  9095. <td>
  9096. <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>
  9097. </td>
  9098. </tr>
  9099. <tr>
  9100. <td>
  9101. <code>accessKey</code></br>
  9102. <em>
  9103. <a href="#external-secrets.io/v1.ScalewayProviderSecretRef">
  9104. ScalewayProviderSecretRef
  9105. </a>
  9106. </em>
  9107. </td>
  9108. <td>
  9109. <p>AccessKey is the non-secret part of the api key.</p>
  9110. </td>
  9111. </tr>
  9112. <tr>
  9113. <td>
  9114. <code>secretKey</code></br>
  9115. <em>
  9116. <a href="#external-secrets.io/v1.ScalewayProviderSecretRef">
  9117. ScalewayProviderSecretRef
  9118. </a>
  9119. </em>
  9120. </td>
  9121. <td>
  9122. <p>SecretKey is the non-secret part of the api key.</p>
  9123. </td>
  9124. </tr>
  9125. </tbody>
  9126. </table>
  9127. <h3 id="external-secrets.io/v1.ScalewayProviderSecretRef">ScalewayProviderSecretRef
  9128. </h3>
  9129. <p>
  9130. (<em>Appears on:</em>
  9131. <a href="#external-secrets.io/v1.ScalewayProvider">ScalewayProvider</a>)
  9132. </p>
  9133. <p>
  9134. </p>
  9135. <table>
  9136. <thead>
  9137. <tr>
  9138. <th>Field</th>
  9139. <th>Description</th>
  9140. </tr>
  9141. </thead>
  9142. <tbody>
  9143. <tr>
  9144. <td>
  9145. <code>value</code></br>
  9146. <em>
  9147. string
  9148. </em>
  9149. </td>
  9150. <td>
  9151. <em>(Optional)</em>
  9152. <p>Value can be specified directly to set a value without using a secret.</p>
  9153. </td>
  9154. </tr>
  9155. <tr>
  9156. <td>
  9157. <code>secretRef</code></br>
  9158. <em>
  9159. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9160. External Secrets meta/v1.SecretKeySelector
  9161. </a>
  9162. </em>
  9163. </td>
  9164. <td>
  9165. <em>(Optional)</em>
  9166. <p>SecretRef references a key in a secret that will be used as value.</p>
  9167. </td>
  9168. </tr>
  9169. </tbody>
  9170. </table>
  9171. <h3 id="external-secrets.io/v1.SecretReference">SecretReference
  9172. </h3>
  9173. <p>
  9174. (<em>Appears on:</em>
  9175. <a href="#external-secrets.io/v1.AwsCredentialsConfig">AwsCredentialsConfig</a>)
  9176. </p>
  9177. <p>
  9178. <p>SecretReference holds the details of a secret.</p>
  9179. </p>
  9180. <table>
  9181. <thead>
  9182. <tr>
  9183. <th>Field</th>
  9184. <th>Description</th>
  9185. </tr>
  9186. </thead>
  9187. <tbody>
  9188. <tr>
  9189. <td>
  9190. <code>name</code></br>
  9191. <em>
  9192. string
  9193. </em>
  9194. </td>
  9195. <td>
  9196. <p>name of the secret.</p>
  9197. </td>
  9198. </tr>
  9199. <tr>
  9200. <td>
  9201. <code>namespace</code></br>
  9202. <em>
  9203. string
  9204. </em>
  9205. </td>
  9206. <td>
  9207. <p>namespace in which the secret exists. If empty, secret will looked up in local namespace.</p>
  9208. </td>
  9209. </tr>
  9210. </tbody>
  9211. </table>
  9212. <h3 id="external-secrets.io/v1.SecretServerProvider">SecretServerProvider
  9213. </h3>
  9214. <p>
  9215. (<em>Appears on:</em>
  9216. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  9217. </p>
  9218. <p>
  9219. <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>
  9220. </p>
  9221. <table>
  9222. <thead>
  9223. <tr>
  9224. <th>Field</th>
  9225. <th>Description</th>
  9226. </tr>
  9227. </thead>
  9228. <tbody>
  9229. <tr>
  9230. <td>
  9231. <code>username</code></br>
  9232. <em>
  9233. <a href="#external-secrets.io/v1.SecretServerProviderRef">
  9234. SecretServerProviderRef
  9235. </a>
  9236. </em>
  9237. </td>
  9238. <td>
  9239. <p>Username is the secret server account username.</p>
  9240. </td>
  9241. </tr>
  9242. <tr>
  9243. <td>
  9244. <code>password</code></br>
  9245. <em>
  9246. <a href="#external-secrets.io/v1.SecretServerProviderRef">
  9247. SecretServerProviderRef
  9248. </a>
  9249. </em>
  9250. </td>
  9251. <td>
  9252. <p>Password is the secret server account password.</p>
  9253. </td>
  9254. </tr>
  9255. <tr>
  9256. <td>
  9257. <code>domain</code></br>
  9258. <em>
  9259. string
  9260. </em>
  9261. </td>
  9262. <td>
  9263. <em>(Optional)</em>
  9264. <p>Domain is the secret server domain.</p>
  9265. </td>
  9266. </tr>
  9267. <tr>
  9268. <td>
  9269. <code>serverURL</code></br>
  9270. <em>
  9271. string
  9272. </em>
  9273. </td>
  9274. <td>
  9275. <p>ServerURL
  9276. URL to your secret server installation</p>
  9277. </td>
  9278. </tr>
  9279. </tbody>
  9280. </table>
  9281. <h3 id="external-secrets.io/v1.SecretServerProviderRef">SecretServerProviderRef
  9282. </h3>
  9283. <p>
  9284. (<em>Appears on:</em>
  9285. <a href="#external-secrets.io/v1.SecretServerProvider">SecretServerProvider</a>)
  9286. </p>
  9287. <p>
  9288. </p>
  9289. <table>
  9290. <thead>
  9291. <tr>
  9292. <th>Field</th>
  9293. <th>Description</th>
  9294. </tr>
  9295. </thead>
  9296. <tbody>
  9297. <tr>
  9298. <td>
  9299. <code>value</code></br>
  9300. <em>
  9301. string
  9302. </em>
  9303. </td>
  9304. <td>
  9305. <em>(Optional)</em>
  9306. <p>Value can be specified directly to set a value without using a secret.</p>
  9307. </td>
  9308. </tr>
  9309. <tr>
  9310. <td>
  9311. <code>secretRef</code></br>
  9312. <em>
  9313. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9314. External Secrets meta/v1.SecretKeySelector
  9315. </a>
  9316. </em>
  9317. </td>
  9318. <td>
  9319. <em>(Optional)</em>
  9320. <p>SecretRef references a key in a secret that will be used as value.</p>
  9321. </td>
  9322. </tr>
  9323. </tbody>
  9324. </table>
  9325. <h3 id="external-secrets.io/v1.SecretStore">SecretStore
  9326. </h3>
  9327. <p>
  9328. <p>SecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  9329. </p>
  9330. <table>
  9331. <thead>
  9332. <tr>
  9333. <th>Field</th>
  9334. <th>Description</th>
  9335. </tr>
  9336. </thead>
  9337. <tbody>
  9338. <tr>
  9339. <td>
  9340. <code>metadata</code></br>
  9341. <em>
  9342. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  9343. Kubernetes meta/v1.ObjectMeta
  9344. </a>
  9345. </em>
  9346. </td>
  9347. <td>
  9348. Refer to the Kubernetes API documentation for the fields of the
  9349. <code>metadata</code> field.
  9350. </td>
  9351. </tr>
  9352. <tr>
  9353. <td>
  9354. <code>spec</code></br>
  9355. <em>
  9356. <a href="#external-secrets.io/v1.SecretStoreSpec">
  9357. SecretStoreSpec
  9358. </a>
  9359. </em>
  9360. </td>
  9361. <td>
  9362. <br/>
  9363. <br/>
  9364. <table>
  9365. <tr>
  9366. <td>
  9367. <code>controller</code></br>
  9368. <em>
  9369. string
  9370. </em>
  9371. </td>
  9372. <td>
  9373. <em>(Optional)</em>
  9374. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  9375. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  9376. </td>
  9377. </tr>
  9378. <tr>
  9379. <td>
  9380. <code>provider</code></br>
  9381. <em>
  9382. <a href="#external-secrets.io/v1.SecretStoreProvider">
  9383. SecretStoreProvider
  9384. </a>
  9385. </em>
  9386. </td>
  9387. <td>
  9388. <p>Used to configure the provider. Only one provider may be set</p>
  9389. </td>
  9390. </tr>
  9391. <tr>
  9392. <td>
  9393. <code>retrySettings</code></br>
  9394. <em>
  9395. <a href="#external-secrets.io/v1.SecretStoreRetrySettings">
  9396. SecretStoreRetrySettings
  9397. </a>
  9398. </em>
  9399. </td>
  9400. <td>
  9401. <em>(Optional)</em>
  9402. <p>Used to configure http retries if failed</p>
  9403. </td>
  9404. </tr>
  9405. <tr>
  9406. <td>
  9407. <code>refreshInterval</code></br>
  9408. <em>
  9409. int
  9410. </em>
  9411. </td>
  9412. <td>
  9413. <em>(Optional)</em>
  9414. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  9415. </td>
  9416. </tr>
  9417. <tr>
  9418. <td>
  9419. <code>conditions</code></br>
  9420. <em>
  9421. <a href="#external-secrets.io/v1.ClusterSecretStoreCondition">
  9422. []ClusterSecretStoreCondition
  9423. </a>
  9424. </em>
  9425. </td>
  9426. <td>
  9427. <em>(Optional)</em>
  9428. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  9429. </td>
  9430. </tr>
  9431. </table>
  9432. </td>
  9433. </tr>
  9434. <tr>
  9435. <td>
  9436. <code>status</code></br>
  9437. <em>
  9438. <a href="#external-secrets.io/v1.SecretStoreStatus">
  9439. SecretStoreStatus
  9440. </a>
  9441. </em>
  9442. </td>
  9443. <td>
  9444. </td>
  9445. </tr>
  9446. </tbody>
  9447. </table>
  9448. <h3 id="external-secrets.io/v1.SecretStoreCapabilities">SecretStoreCapabilities
  9449. (<code>string</code> alias)</p></h3>
  9450. <p>
  9451. (<em>Appears on:</em>
  9452. <a href="#external-secrets.io/v1.SecretStoreStatus">SecretStoreStatus</a>)
  9453. </p>
  9454. <p>
  9455. <p>SecretStoreCapabilities defines the possible operations a SecretStore can do.</p>
  9456. </p>
  9457. <table>
  9458. <thead>
  9459. <tr>
  9460. <th>Value</th>
  9461. <th>Description</th>
  9462. </tr>
  9463. </thead>
  9464. <tbody><tr><td><p>&#34;ReadOnly&#34;</p></td>
  9465. <td></td>
  9466. </tr><tr><td><p>&#34;ReadWrite&#34;</p></td>
  9467. <td></td>
  9468. </tr><tr><td><p>&#34;WriteOnly&#34;</p></td>
  9469. <td></td>
  9470. </tr></tbody>
  9471. </table>
  9472. <h3 id="external-secrets.io/v1.SecretStoreConditionType">SecretStoreConditionType
  9473. (<code>string</code> alias)</p></h3>
  9474. <p>
  9475. (<em>Appears on:</em>
  9476. <a href="#external-secrets.io/v1.SecretStoreStatusCondition">SecretStoreStatusCondition</a>)
  9477. </p>
  9478. <p>
  9479. </p>
  9480. <table>
  9481. <thead>
  9482. <tr>
  9483. <th>Value</th>
  9484. <th>Description</th>
  9485. </tr>
  9486. </thead>
  9487. <tbody><tr><td><p>&#34;Ready&#34;</p></td>
  9488. <td></td>
  9489. </tr></tbody>
  9490. </table>
  9491. <h3 id="external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider
  9492. </h3>
  9493. <p>
  9494. (<em>Appears on:</em>
  9495. <a href="#external-secrets.io/v1.SecretStoreSpec">SecretStoreSpec</a>)
  9496. </p>
  9497. <p>
  9498. <p>SecretStoreProvider contains the provider-specific configuration.</p>
  9499. </p>
  9500. <table>
  9501. <thead>
  9502. <tr>
  9503. <th>Field</th>
  9504. <th>Description</th>
  9505. </tr>
  9506. </thead>
  9507. <tbody>
  9508. <tr>
  9509. <td>
  9510. <code>aws</code></br>
  9511. <em>
  9512. <a href="#external-secrets.io/v1.AWSProvider">
  9513. AWSProvider
  9514. </a>
  9515. </em>
  9516. </td>
  9517. <td>
  9518. <em>(Optional)</em>
  9519. <p>AWS configures this store to sync secrets using AWS Secret Manager provider</p>
  9520. </td>
  9521. </tr>
  9522. <tr>
  9523. <td>
  9524. <code>azurekv</code></br>
  9525. <em>
  9526. <a href="#external-secrets.io/v1.AzureKVProvider">
  9527. AzureKVProvider
  9528. </a>
  9529. </em>
  9530. </td>
  9531. <td>
  9532. <em>(Optional)</em>
  9533. <p>AzureKV configures this store to sync secrets using Azure Key Vault provider</p>
  9534. </td>
  9535. </tr>
  9536. <tr>
  9537. <td>
  9538. <code>akeyless</code></br>
  9539. <em>
  9540. <a href="#external-secrets.io/v1.AkeylessProvider">
  9541. AkeylessProvider
  9542. </a>
  9543. </em>
  9544. </td>
  9545. <td>
  9546. <em>(Optional)</em>
  9547. <p>Akeyless configures this store to sync secrets using Akeyless Vault provider</p>
  9548. </td>
  9549. </tr>
  9550. <tr>
  9551. <td>
  9552. <code>bitwardensecretsmanager</code></br>
  9553. <em>
  9554. <a href="#external-secrets.io/v1.BitwardenSecretsManagerProvider">
  9555. BitwardenSecretsManagerProvider
  9556. </a>
  9557. </em>
  9558. </td>
  9559. <td>
  9560. <em>(Optional)</em>
  9561. <p>BitwardenSecretsManager configures this store to sync secrets using BitwardenSecretsManager provider</p>
  9562. </td>
  9563. </tr>
  9564. <tr>
  9565. <td>
  9566. <code>vault</code></br>
  9567. <em>
  9568. <a href="#external-secrets.io/v1.VaultProvider">
  9569. VaultProvider
  9570. </a>
  9571. </em>
  9572. </td>
  9573. <td>
  9574. <em>(Optional)</em>
  9575. <p>Vault configures this store to sync secrets using Hashi provider</p>
  9576. </td>
  9577. </tr>
  9578. <tr>
  9579. <td>
  9580. <code>gcpsm</code></br>
  9581. <em>
  9582. <a href="#external-secrets.io/v1.GCPSMProvider">
  9583. GCPSMProvider
  9584. </a>
  9585. </em>
  9586. </td>
  9587. <td>
  9588. <em>(Optional)</em>
  9589. <p>GCPSM configures this store to sync secrets using Google Cloud Platform Secret Manager provider</p>
  9590. </td>
  9591. </tr>
  9592. <tr>
  9593. <td>
  9594. <code>oracle</code></br>
  9595. <em>
  9596. <a href="#external-secrets.io/v1.OracleProvider">
  9597. OracleProvider
  9598. </a>
  9599. </em>
  9600. </td>
  9601. <td>
  9602. <em>(Optional)</em>
  9603. <p>Oracle configures this store to sync secrets using Oracle Vault provider</p>
  9604. </td>
  9605. </tr>
  9606. <tr>
  9607. <td>
  9608. <code>ibm</code></br>
  9609. <em>
  9610. <a href="#external-secrets.io/v1.IBMProvider">
  9611. IBMProvider
  9612. </a>
  9613. </em>
  9614. </td>
  9615. <td>
  9616. <em>(Optional)</em>
  9617. <p>IBM configures this store to sync secrets using IBM Cloud provider</p>
  9618. </td>
  9619. </tr>
  9620. <tr>
  9621. <td>
  9622. <code>yandexcertificatemanager</code></br>
  9623. <em>
  9624. <a href="#external-secrets.io/v1.YandexCertificateManagerProvider">
  9625. YandexCertificateManagerProvider
  9626. </a>
  9627. </em>
  9628. </td>
  9629. <td>
  9630. <em>(Optional)</em>
  9631. <p>YandexCertificateManager configures this store to sync secrets using Yandex Certificate Manager provider</p>
  9632. </td>
  9633. </tr>
  9634. <tr>
  9635. <td>
  9636. <code>yandexlockbox</code></br>
  9637. <em>
  9638. <a href="#external-secrets.io/v1.YandexLockboxProvider">
  9639. YandexLockboxProvider
  9640. </a>
  9641. </em>
  9642. </td>
  9643. <td>
  9644. <em>(Optional)</em>
  9645. <p>YandexLockbox configures this store to sync secrets using Yandex Lockbox provider</p>
  9646. </td>
  9647. </tr>
  9648. <tr>
  9649. <td>
  9650. <code>github</code></br>
  9651. <em>
  9652. <a href="#external-secrets.io/v1.GithubProvider">
  9653. GithubProvider
  9654. </a>
  9655. </em>
  9656. </td>
  9657. <td>
  9658. <em>(Optional)</em>
  9659. <p>Github configures this store to push Github Action secrets using Github API provider</p>
  9660. </td>
  9661. </tr>
  9662. <tr>
  9663. <td>
  9664. <code>gitlab</code></br>
  9665. <em>
  9666. <a href="#external-secrets.io/v1.GitlabProvider">
  9667. GitlabProvider
  9668. </a>
  9669. </em>
  9670. </td>
  9671. <td>
  9672. <em>(Optional)</em>
  9673. <p>GitLab configures this store to sync secrets using GitLab Variables provider</p>
  9674. </td>
  9675. </tr>
  9676. <tr>
  9677. <td>
  9678. <code>alibaba</code></br>
  9679. <em>
  9680. <a href="#external-secrets.io/v1.AlibabaProvider">
  9681. AlibabaProvider
  9682. </a>
  9683. </em>
  9684. </td>
  9685. <td>
  9686. <em>(Optional)</em>
  9687. <p>Alibaba configures this store to sync secrets using Alibaba Cloud provider</p>
  9688. </td>
  9689. </tr>
  9690. <tr>
  9691. <td>
  9692. <code>onepassword</code></br>
  9693. <em>
  9694. <a href="#external-secrets.io/v1.OnePasswordProvider">
  9695. OnePasswordProvider
  9696. </a>
  9697. </em>
  9698. </td>
  9699. <td>
  9700. <em>(Optional)</em>
  9701. <p>OnePassword configures this store to sync secrets using the 1Password Cloud provider</p>
  9702. </td>
  9703. </tr>
  9704. <tr>
  9705. <td>
  9706. <code>onepasswordSDK</code></br>
  9707. <em>
  9708. <a href="#external-secrets.io/v1.OnePasswordSDKProvider">
  9709. OnePasswordSDKProvider
  9710. </a>
  9711. </em>
  9712. </td>
  9713. <td>
  9714. <em>(Optional)</em>
  9715. <p>OnePasswordSDK configures this store to use 1Password&rsquo;s new Go SDK to sync secrets.</p>
  9716. </td>
  9717. </tr>
  9718. <tr>
  9719. <td>
  9720. <code>webhook</code></br>
  9721. <em>
  9722. <a href="#external-secrets.io/v1.WebhookProvider">
  9723. WebhookProvider
  9724. </a>
  9725. </em>
  9726. </td>
  9727. <td>
  9728. <em>(Optional)</em>
  9729. <p>Webhook configures this store to sync secrets using a generic templated webhook</p>
  9730. </td>
  9731. </tr>
  9732. <tr>
  9733. <td>
  9734. <code>kubernetes</code></br>
  9735. <em>
  9736. <a href="#external-secrets.io/v1.KubernetesProvider">
  9737. KubernetesProvider
  9738. </a>
  9739. </em>
  9740. </td>
  9741. <td>
  9742. <em>(Optional)</em>
  9743. <p>Kubernetes configures this store to sync secrets using a Kubernetes cluster provider</p>
  9744. </td>
  9745. </tr>
  9746. <tr>
  9747. <td>
  9748. <code>fake</code></br>
  9749. <em>
  9750. <a href="#external-secrets.io/v1.FakeProvider">
  9751. FakeProvider
  9752. </a>
  9753. </em>
  9754. </td>
  9755. <td>
  9756. <em>(Optional)</em>
  9757. <p>Fake configures a store with static key/value pairs</p>
  9758. </td>
  9759. </tr>
  9760. <tr>
  9761. <td>
  9762. <code>senhasegura</code></br>
  9763. <em>
  9764. <a href="#external-secrets.io/v1.SenhaseguraProvider">
  9765. SenhaseguraProvider
  9766. </a>
  9767. </em>
  9768. </td>
  9769. <td>
  9770. <em>(Optional)</em>
  9771. <p>Senhasegura configures this store to sync secrets using senhasegura provider</p>
  9772. </td>
  9773. </tr>
  9774. <tr>
  9775. <td>
  9776. <code>scaleway</code></br>
  9777. <em>
  9778. <a href="#external-secrets.io/v1.ScalewayProvider">
  9779. ScalewayProvider
  9780. </a>
  9781. </em>
  9782. </td>
  9783. <td>
  9784. <em>(Optional)</em>
  9785. <p>Scaleway</p>
  9786. </td>
  9787. </tr>
  9788. <tr>
  9789. <td>
  9790. <code>doppler</code></br>
  9791. <em>
  9792. <a href="#external-secrets.io/v1.DopplerProvider">
  9793. DopplerProvider
  9794. </a>
  9795. </em>
  9796. </td>
  9797. <td>
  9798. <em>(Optional)</em>
  9799. <p>Doppler configures this store to sync secrets using the Doppler provider</p>
  9800. </td>
  9801. </tr>
  9802. <tr>
  9803. <td>
  9804. <code>previder</code></br>
  9805. <em>
  9806. <a href="#external-secrets.io/v1.PreviderProvider">
  9807. PreviderProvider
  9808. </a>
  9809. </em>
  9810. </td>
  9811. <td>
  9812. <em>(Optional)</em>
  9813. <p>Previder configures this store to sync secrets using the Previder provider</p>
  9814. </td>
  9815. </tr>
  9816. <tr>
  9817. <td>
  9818. <code>onboardbase</code></br>
  9819. <em>
  9820. <a href="#external-secrets.io/v1.OnboardbaseProvider">
  9821. OnboardbaseProvider
  9822. </a>
  9823. </em>
  9824. </td>
  9825. <td>
  9826. <em>(Optional)</em>
  9827. <p>Onboardbase configures this store to sync secrets using the Onboardbase provider</p>
  9828. </td>
  9829. </tr>
  9830. <tr>
  9831. <td>
  9832. <code>keepersecurity</code></br>
  9833. <em>
  9834. <a href="#external-secrets.io/v1.KeeperSecurityProvider">
  9835. KeeperSecurityProvider
  9836. </a>
  9837. </em>
  9838. </td>
  9839. <td>
  9840. <em>(Optional)</em>
  9841. <p>KeeperSecurity configures this store to sync secrets using the KeeperSecurity provider</p>
  9842. </td>
  9843. </tr>
  9844. <tr>
  9845. <td>
  9846. <code>conjur</code></br>
  9847. <em>
  9848. <a href="#external-secrets.io/v1.ConjurProvider">
  9849. ConjurProvider
  9850. </a>
  9851. </em>
  9852. </td>
  9853. <td>
  9854. <em>(Optional)</em>
  9855. <p>Conjur configures this store to sync secrets using conjur provider</p>
  9856. </td>
  9857. </tr>
  9858. <tr>
  9859. <td>
  9860. <code>delinea</code></br>
  9861. <em>
  9862. <a href="#external-secrets.io/v1.DelineaProvider">
  9863. DelineaProvider
  9864. </a>
  9865. </em>
  9866. </td>
  9867. <td>
  9868. <em>(Optional)</em>
  9869. <p>Delinea DevOps Secrets Vault
  9870. <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>
  9871. </td>
  9872. </tr>
  9873. <tr>
  9874. <td>
  9875. <code>secretserver</code></br>
  9876. <em>
  9877. <a href="#external-secrets.io/v1.SecretServerProvider">
  9878. SecretServerProvider
  9879. </a>
  9880. </em>
  9881. </td>
  9882. <td>
  9883. <em>(Optional)</em>
  9884. <p>SecretServer configures this store to sync secrets using SecretServer provider
  9885. <a href="https://docs.delinea.com/online-help/secret-server/start.htm">https://docs.delinea.com/online-help/secret-server/start.htm</a></p>
  9886. </td>
  9887. </tr>
  9888. <tr>
  9889. <td>
  9890. <code>chef</code></br>
  9891. <em>
  9892. <a href="#external-secrets.io/v1.ChefProvider">
  9893. ChefProvider
  9894. </a>
  9895. </em>
  9896. </td>
  9897. <td>
  9898. <em>(Optional)</em>
  9899. <p>Chef configures this store to sync secrets with chef server</p>
  9900. </td>
  9901. </tr>
  9902. <tr>
  9903. <td>
  9904. <code>pulumi</code></br>
  9905. <em>
  9906. <a href="#external-secrets.io/v1.PulumiProvider">
  9907. PulumiProvider
  9908. </a>
  9909. </em>
  9910. </td>
  9911. <td>
  9912. <em>(Optional)</em>
  9913. <p>Pulumi configures this store to sync secrets using the Pulumi provider</p>
  9914. </td>
  9915. </tr>
  9916. <tr>
  9917. <td>
  9918. <code>fortanix</code></br>
  9919. <em>
  9920. <a href="#external-secrets.io/v1.FortanixProvider">
  9921. FortanixProvider
  9922. </a>
  9923. </em>
  9924. </td>
  9925. <td>
  9926. <em>(Optional)</em>
  9927. <p>Fortanix configures this store to sync secrets using the Fortanix provider</p>
  9928. </td>
  9929. </tr>
  9930. <tr>
  9931. <td>
  9932. <code>passworddepot</code></br>
  9933. <em>
  9934. <a href="#external-secrets.io/v1.PasswordDepotProvider">
  9935. PasswordDepotProvider
  9936. </a>
  9937. </em>
  9938. </td>
  9939. <td>
  9940. <em>(Optional)</em>
  9941. </td>
  9942. </tr>
  9943. <tr>
  9944. <td>
  9945. <code>passbolt</code></br>
  9946. <em>
  9947. <a href="#external-secrets.io/v1.PassboltProvider">
  9948. PassboltProvider
  9949. </a>
  9950. </em>
  9951. </td>
  9952. <td>
  9953. <em>(Optional)</em>
  9954. </td>
  9955. </tr>
  9956. <tr>
  9957. <td>
  9958. <code>device42</code></br>
  9959. <em>
  9960. <a href="#external-secrets.io/v1.Device42Provider">
  9961. Device42Provider
  9962. </a>
  9963. </em>
  9964. </td>
  9965. <td>
  9966. <em>(Optional)</em>
  9967. <p>Device42 configures this store to sync secrets using the Device42 provider</p>
  9968. </td>
  9969. </tr>
  9970. <tr>
  9971. <td>
  9972. <code>infisical</code></br>
  9973. <em>
  9974. <a href="#external-secrets.io/v1.InfisicalProvider">
  9975. InfisicalProvider
  9976. </a>
  9977. </em>
  9978. </td>
  9979. <td>
  9980. <em>(Optional)</em>
  9981. <p>Infisical configures this store to sync secrets using the Infisical provider</p>
  9982. </td>
  9983. </tr>
  9984. <tr>
  9985. <td>
  9986. <code>beyondtrust</code></br>
  9987. <em>
  9988. <a href="#external-secrets.io/v1.BeyondtrustProvider">
  9989. BeyondtrustProvider
  9990. </a>
  9991. </em>
  9992. </td>
  9993. <td>
  9994. <em>(Optional)</em>
  9995. <p>Beyondtrust configures this store to sync secrets using Password Safe provider.</p>
  9996. </td>
  9997. </tr>
  9998. <tr>
  9999. <td>
  10000. <code>cloudrusm</code></br>
  10001. <em>
  10002. <a href="#external-secrets.io/v1.CloudruSMProvider">
  10003. CloudruSMProvider
  10004. </a>
  10005. </em>
  10006. </td>
  10007. <td>
  10008. <em>(Optional)</em>
  10009. <p>CloudruSM configures this store to sync secrets using the Cloud.ru Secret Manager provider</p>
  10010. </td>
  10011. </tr>
  10012. </tbody>
  10013. </table>
  10014. <h3 id="external-secrets.io/v1.SecretStoreRef">SecretStoreRef
  10015. </h3>
  10016. <p>
  10017. (<em>Appears on:</em>
  10018. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>,
  10019. <a href="#external-secrets.io/v1.StoreGeneratorSourceRef">StoreGeneratorSourceRef</a>,
  10020. <a href="#external-secrets.io/v1.StoreSourceRef">StoreSourceRef</a>)
  10021. </p>
  10022. <p>
  10023. <p>SecretStoreRef defines which SecretStore to fetch the ExternalSecret data.</p>
  10024. </p>
  10025. <table>
  10026. <thead>
  10027. <tr>
  10028. <th>Field</th>
  10029. <th>Description</th>
  10030. </tr>
  10031. </thead>
  10032. <tbody>
  10033. <tr>
  10034. <td>
  10035. <code>name</code></br>
  10036. <em>
  10037. string
  10038. </em>
  10039. </td>
  10040. <td>
  10041. <p>Name of the SecretStore resource</p>
  10042. </td>
  10043. </tr>
  10044. <tr>
  10045. <td>
  10046. <code>kind</code></br>
  10047. <em>
  10048. string
  10049. </em>
  10050. </td>
  10051. <td>
  10052. <em>(Optional)</em>
  10053. <p>Kind of the SecretStore resource (SecretStore or ClusterSecretStore)
  10054. Defaults to <code>SecretStore</code></p>
  10055. </td>
  10056. </tr>
  10057. </tbody>
  10058. </table>
  10059. <h3 id="external-secrets.io/v1.SecretStoreRetrySettings">SecretStoreRetrySettings
  10060. </h3>
  10061. <p>
  10062. (<em>Appears on:</em>
  10063. <a href="#external-secrets.io/v1.SecretStoreSpec">SecretStoreSpec</a>)
  10064. </p>
  10065. <p>
  10066. </p>
  10067. <table>
  10068. <thead>
  10069. <tr>
  10070. <th>Field</th>
  10071. <th>Description</th>
  10072. </tr>
  10073. </thead>
  10074. <tbody>
  10075. <tr>
  10076. <td>
  10077. <code>maxRetries</code></br>
  10078. <em>
  10079. int32
  10080. </em>
  10081. </td>
  10082. <td>
  10083. </td>
  10084. </tr>
  10085. <tr>
  10086. <td>
  10087. <code>retryInterval</code></br>
  10088. <em>
  10089. string
  10090. </em>
  10091. </td>
  10092. <td>
  10093. </td>
  10094. </tr>
  10095. </tbody>
  10096. </table>
  10097. <h3 id="external-secrets.io/v1.SecretStoreSpec">SecretStoreSpec
  10098. </h3>
  10099. <p>
  10100. (<em>Appears on:</em>
  10101. <a href="#external-secrets.io/v1.ClusterSecretStore">ClusterSecretStore</a>,
  10102. <a href="#external-secrets.io/v1.SecretStore">SecretStore</a>)
  10103. </p>
  10104. <p>
  10105. <p>SecretStoreSpec defines the desired state of SecretStore.</p>
  10106. </p>
  10107. <table>
  10108. <thead>
  10109. <tr>
  10110. <th>Field</th>
  10111. <th>Description</th>
  10112. </tr>
  10113. </thead>
  10114. <tbody>
  10115. <tr>
  10116. <td>
  10117. <code>controller</code></br>
  10118. <em>
  10119. string
  10120. </em>
  10121. </td>
  10122. <td>
  10123. <em>(Optional)</em>
  10124. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  10125. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  10126. </td>
  10127. </tr>
  10128. <tr>
  10129. <td>
  10130. <code>provider</code></br>
  10131. <em>
  10132. <a href="#external-secrets.io/v1.SecretStoreProvider">
  10133. SecretStoreProvider
  10134. </a>
  10135. </em>
  10136. </td>
  10137. <td>
  10138. <p>Used to configure the provider. Only one provider may be set</p>
  10139. </td>
  10140. </tr>
  10141. <tr>
  10142. <td>
  10143. <code>retrySettings</code></br>
  10144. <em>
  10145. <a href="#external-secrets.io/v1.SecretStoreRetrySettings">
  10146. SecretStoreRetrySettings
  10147. </a>
  10148. </em>
  10149. </td>
  10150. <td>
  10151. <em>(Optional)</em>
  10152. <p>Used to configure http retries if failed</p>
  10153. </td>
  10154. </tr>
  10155. <tr>
  10156. <td>
  10157. <code>refreshInterval</code></br>
  10158. <em>
  10159. int
  10160. </em>
  10161. </td>
  10162. <td>
  10163. <em>(Optional)</em>
  10164. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  10165. </td>
  10166. </tr>
  10167. <tr>
  10168. <td>
  10169. <code>conditions</code></br>
  10170. <em>
  10171. <a href="#external-secrets.io/v1.ClusterSecretStoreCondition">
  10172. []ClusterSecretStoreCondition
  10173. </a>
  10174. </em>
  10175. </td>
  10176. <td>
  10177. <em>(Optional)</em>
  10178. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  10179. </td>
  10180. </tr>
  10181. </tbody>
  10182. </table>
  10183. <h3 id="external-secrets.io/v1.SecretStoreStatus">SecretStoreStatus
  10184. </h3>
  10185. <p>
  10186. (<em>Appears on:</em>
  10187. <a href="#external-secrets.io/v1.ClusterSecretStore">ClusterSecretStore</a>,
  10188. <a href="#external-secrets.io/v1.SecretStore">SecretStore</a>)
  10189. </p>
  10190. <p>
  10191. <p>SecretStoreStatus defines the observed state of the SecretStore.</p>
  10192. </p>
  10193. <table>
  10194. <thead>
  10195. <tr>
  10196. <th>Field</th>
  10197. <th>Description</th>
  10198. </tr>
  10199. </thead>
  10200. <tbody>
  10201. <tr>
  10202. <td>
  10203. <code>conditions</code></br>
  10204. <em>
  10205. <a href="#external-secrets.io/v1.SecretStoreStatusCondition">
  10206. []SecretStoreStatusCondition
  10207. </a>
  10208. </em>
  10209. </td>
  10210. <td>
  10211. <em>(Optional)</em>
  10212. </td>
  10213. </tr>
  10214. <tr>
  10215. <td>
  10216. <code>capabilities</code></br>
  10217. <em>
  10218. <a href="#external-secrets.io/v1.SecretStoreCapabilities">
  10219. SecretStoreCapabilities
  10220. </a>
  10221. </em>
  10222. </td>
  10223. <td>
  10224. <em>(Optional)</em>
  10225. </td>
  10226. </tr>
  10227. </tbody>
  10228. </table>
  10229. <h3 id="external-secrets.io/v1.SecretStoreStatusCondition">SecretStoreStatusCondition
  10230. </h3>
  10231. <p>
  10232. (<em>Appears on:</em>
  10233. <a href="#external-secrets.io/v1.SecretStoreStatus">SecretStoreStatus</a>)
  10234. </p>
  10235. <p>
  10236. </p>
  10237. <table>
  10238. <thead>
  10239. <tr>
  10240. <th>Field</th>
  10241. <th>Description</th>
  10242. </tr>
  10243. </thead>
  10244. <tbody>
  10245. <tr>
  10246. <td>
  10247. <code>type</code></br>
  10248. <em>
  10249. <a href="#external-secrets.io/v1.SecretStoreConditionType">
  10250. SecretStoreConditionType
  10251. </a>
  10252. </em>
  10253. </td>
  10254. <td>
  10255. </td>
  10256. </tr>
  10257. <tr>
  10258. <td>
  10259. <code>status</code></br>
  10260. <em>
  10261. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  10262. Kubernetes core/v1.ConditionStatus
  10263. </a>
  10264. </em>
  10265. </td>
  10266. <td>
  10267. </td>
  10268. </tr>
  10269. <tr>
  10270. <td>
  10271. <code>reason</code></br>
  10272. <em>
  10273. string
  10274. </em>
  10275. </td>
  10276. <td>
  10277. <em>(Optional)</em>
  10278. </td>
  10279. </tr>
  10280. <tr>
  10281. <td>
  10282. <code>message</code></br>
  10283. <em>
  10284. string
  10285. </em>
  10286. </td>
  10287. <td>
  10288. <em>(Optional)</em>
  10289. </td>
  10290. </tr>
  10291. <tr>
  10292. <td>
  10293. <code>lastTransitionTime</code></br>
  10294. <em>
  10295. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  10296. Kubernetes meta/v1.Time
  10297. </a>
  10298. </em>
  10299. </td>
  10300. <td>
  10301. <em>(Optional)</em>
  10302. </td>
  10303. </tr>
  10304. </tbody>
  10305. </table>
  10306. <h3 id="external-secrets.io/v1.SecretsClient">SecretsClient
  10307. </h3>
  10308. <p>
  10309. <p>SecretsClient provides access to secrets.</p>
  10310. </p>
  10311. <h3 id="external-secrets.io/v1.SecretsManager">SecretsManager
  10312. </h3>
  10313. <p>
  10314. (<em>Appears on:</em>
  10315. <a href="#external-secrets.io/v1.AWSProvider">AWSProvider</a>)
  10316. </p>
  10317. <p>
  10318. <p>SecretsManager defines how the provider behaves when interacting with AWS
  10319. SecretsManager. Some of these settings are only applicable to controlling how
  10320. secrets are deleted, and hence only apply to PushSecret (and only when
  10321. deletionPolicy is set to Delete).</p>
  10322. </p>
  10323. <table>
  10324. <thead>
  10325. <tr>
  10326. <th>Field</th>
  10327. <th>Description</th>
  10328. </tr>
  10329. </thead>
  10330. <tbody>
  10331. <tr>
  10332. <td>
  10333. <code>forceDeleteWithoutRecovery</code></br>
  10334. <em>
  10335. bool
  10336. </em>
  10337. </td>
  10338. <td>
  10339. <em>(Optional)</em>
  10340. <p>Specifies whether to delete the secret without any recovery window. You
  10341. can&rsquo;t use both this parameter and RecoveryWindowInDays in the same call.
  10342. If you don&rsquo;t use either, then by default Secrets Manager uses a 30 day
  10343. recovery window.
  10344. 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>
  10345. </td>
  10346. </tr>
  10347. <tr>
  10348. <td>
  10349. <code>recoveryWindowInDays</code></br>
  10350. <em>
  10351. int64
  10352. </em>
  10353. </td>
  10354. <td>
  10355. <em>(Optional)</em>
  10356. <p>The number of days from 7 to 30 that Secrets Manager waits before
  10357. permanently deleting the secret. You can&rsquo;t use both this parameter and
  10358. ForceDeleteWithoutRecovery in the same call. If you don&rsquo;t use either,
  10359. then by default Secrets Manager uses a 30 day recovery window.
  10360. 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>
  10361. </td>
  10362. </tr>
  10363. </tbody>
  10364. </table>
  10365. <h3 id="external-secrets.io/v1.SenhaseguraAuth">SenhaseguraAuth
  10366. </h3>
  10367. <p>
  10368. (<em>Appears on:</em>
  10369. <a href="#external-secrets.io/v1.SenhaseguraProvider">SenhaseguraProvider</a>)
  10370. </p>
  10371. <p>
  10372. <p>SenhaseguraAuth tells the controller how to do auth in senhasegura.</p>
  10373. </p>
  10374. <table>
  10375. <thead>
  10376. <tr>
  10377. <th>Field</th>
  10378. <th>Description</th>
  10379. </tr>
  10380. </thead>
  10381. <tbody>
  10382. <tr>
  10383. <td>
  10384. <code>clientId</code></br>
  10385. <em>
  10386. string
  10387. </em>
  10388. </td>
  10389. <td>
  10390. </td>
  10391. </tr>
  10392. <tr>
  10393. <td>
  10394. <code>clientSecretSecretRef</code></br>
  10395. <em>
  10396. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10397. External Secrets meta/v1.SecretKeySelector
  10398. </a>
  10399. </em>
  10400. </td>
  10401. <td>
  10402. </td>
  10403. </tr>
  10404. </tbody>
  10405. </table>
  10406. <h3 id="external-secrets.io/v1.SenhaseguraModuleType">SenhaseguraModuleType
  10407. (<code>string</code> alias)</p></h3>
  10408. <p>
  10409. (<em>Appears on:</em>
  10410. <a href="#external-secrets.io/v1.SenhaseguraProvider">SenhaseguraProvider</a>)
  10411. </p>
  10412. <p>
  10413. <p>SenhaseguraModuleType enum defines senhasegura target module to fetch secrets</p>
  10414. </p>
  10415. <table>
  10416. <thead>
  10417. <tr>
  10418. <th>Value</th>
  10419. <th>Description</th>
  10420. </tr>
  10421. </thead>
  10422. <tbody><tr><td><p>&#34;DSM&#34;</p></td>
  10423. <td><pre><code> SenhaseguraModuleDSM is the senhasegura DevOps Secrets Management module
  10424. see: https://senhasegura.com/devops
  10425. </code></pre>
  10426. </td>
  10427. </tr></tbody>
  10428. </table>
  10429. <h3 id="external-secrets.io/v1.SenhaseguraProvider">SenhaseguraProvider
  10430. </h3>
  10431. <p>
  10432. (<em>Appears on:</em>
  10433. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  10434. </p>
  10435. <p>
  10436. <p>SenhaseguraProvider setup a store to sync secrets with senhasegura.</p>
  10437. </p>
  10438. <table>
  10439. <thead>
  10440. <tr>
  10441. <th>Field</th>
  10442. <th>Description</th>
  10443. </tr>
  10444. </thead>
  10445. <tbody>
  10446. <tr>
  10447. <td>
  10448. <code>url</code></br>
  10449. <em>
  10450. string
  10451. </em>
  10452. </td>
  10453. <td>
  10454. <p>URL of senhasegura</p>
  10455. </td>
  10456. </tr>
  10457. <tr>
  10458. <td>
  10459. <code>module</code></br>
  10460. <em>
  10461. <a href="#external-secrets.io/v1.SenhaseguraModuleType">
  10462. SenhaseguraModuleType
  10463. </a>
  10464. </em>
  10465. </td>
  10466. <td>
  10467. <p>Module defines which senhasegura module should be used to get secrets</p>
  10468. </td>
  10469. </tr>
  10470. <tr>
  10471. <td>
  10472. <code>auth</code></br>
  10473. <em>
  10474. <a href="#external-secrets.io/v1.SenhaseguraAuth">
  10475. SenhaseguraAuth
  10476. </a>
  10477. </em>
  10478. </td>
  10479. <td>
  10480. <p>Auth defines parameters to authenticate in senhasegura</p>
  10481. </td>
  10482. </tr>
  10483. <tr>
  10484. <td>
  10485. <code>ignoreSslCertificate</code></br>
  10486. <em>
  10487. bool
  10488. </em>
  10489. </td>
  10490. <td>
  10491. <p>IgnoreSslCertificate defines if SSL certificate must be ignored</p>
  10492. </td>
  10493. </tr>
  10494. </tbody>
  10495. </table>
  10496. <h3 id="external-secrets.io/v1.StoreGeneratorSourceRef">StoreGeneratorSourceRef
  10497. </h3>
  10498. <p>
  10499. (<em>Appears on:</em>
  10500. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  10501. </p>
  10502. <p>
  10503. <p>StoreGeneratorSourceRef allows you to override the source
  10504. from which the secret will be pulled from.
  10505. You can define at maximum one property.</p>
  10506. </p>
  10507. <table>
  10508. <thead>
  10509. <tr>
  10510. <th>Field</th>
  10511. <th>Description</th>
  10512. </tr>
  10513. </thead>
  10514. <tbody>
  10515. <tr>
  10516. <td>
  10517. <code>storeRef</code></br>
  10518. <em>
  10519. <a href="#external-secrets.io/v1.SecretStoreRef">
  10520. SecretStoreRef
  10521. </a>
  10522. </em>
  10523. </td>
  10524. <td>
  10525. <em>(Optional)</em>
  10526. </td>
  10527. </tr>
  10528. <tr>
  10529. <td>
  10530. <code>generatorRef</code></br>
  10531. <em>
  10532. <a href="#external-secrets.io/v1.GeneratorRef">
  10533. GeneratorRef
  10534. </a>
  10535. </em>
  10536. </td>
  10537. <td>
  10538. <em>(Optional)</em>
  10539. <p>GeneratorRef points to a generator custom resource.</p>
  10540. </td>
  10541. </tr>
  10542. </tbody>
  10543. </table>
  10544. <h3 id="external-secrets.io/v1.StoreSourceRef">StoreSourceRef
  10545. </h3>
  10546. <p>
  10547. (<em>Appears on:</em>
  10548. <a href="#external-secrets.io/v1.ExternalSecretData">ExternalSecretData</a>)
  10549. </p>
  10550. <p>
  10551. <p>StoreSourceRef allows you to override the SecretStore source
  10552. from which the secret will be pulled from.
  10553. You can define at maximum one property.</p>
  10554. </p>
  10555. <table>
  10556. <thead>
  10557. <tr>
  10558. <th>Field</th>
  10559. <th>Description</th>
  10560. </tr>
  10561. </thead>
  10562. <tbody>
  10563. <tr>
  10564. <td>
  10565. <code>storeRef</code></br>
  10566. <em>
  10567. <a href="#external-secrets.io/v1.SecretStoreRef">
  10568. SecretStoreRef
  10569. </a>
  10570. </em>
  10571. </td>
  10572. <td>
  10573. <em>(Optional)</em>
  10574. </td>
  10575. </tr>
  10576. <tr>
  10577. <td>
  10578. <code>generatorRef</code></br>
  10579. <em>
  10580. <a href="#external-secrets.io/v1.GeneratorRef">
  10581. GeneratorRef
  10582. </a>
  10583. </em>
  10584. </td>
  10585. <td>
  10586. <p>GeneratorRef points to a generator custom resource.</p>
  10587. <p>Deprecated: The generatorRef is not implemented in .data[].
  10588. this will be removed with v1.</p>
  10589. </td>
  10590. </tr>
  10591. </tbody>
  10592. </table>
  10593. <h3 id="external-secrets.io/v1.Tag">Tag
  10594. </h3>
  10595. <p>
  10596. </p>
  10597. <table>
  10598. <thead>
  10599. <tr>
  10600. <th>Field</th>
  10601. <th>Description</th>
  10602. </tr>
  10603. </thead>
  10604. <tbody>
  10605. <tr>
  10606. <td>
  10607. <code>key</code></br>
  10608. <em>
  10609. string
  10610. </em>
  10611. </td>
  10612. <td>
  10613. </td>
  10614. </tr>
  10615. <tr>
  10616. <td>
  10617. <code>value</code></br>
  10618. <em>
  10619. string
  10620. </em>
  10621. </td>
  10622. <td>
  10623. </td>
  10624. </tr>
  10625. </tbody>
  10626. </table>
  10627. <h3 id="external-secrets.io/v1.TemplateEngineVersion">TemplateEngineVersion
  10628. (<code>string</code> alias)</p></h3>
  10629. <p>
  10630. (<em>Appears on:</em>
  10631. <a href="#external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  10632. </p>
  10633. <p>
  10634. </p>
  10635. <table>
  10636. <thead>
  10637. <tr>
  10638. <th>Value</th>
  10639. <th>Description</th>
  10640. </tr>
  10641. </thead>
  10642. <tbody><tr><td><p>&#34;v2&#34;</p></td>
  10643. <td></td>
  10644. </tr></tbody>
  10645. </table>
  10646. <h3 id="external-secrets.io/v1.TemplateFrom">TemplateFrom
  10647. </h3>
  10648. <p>
  10649. (<em>Appears on:</em>
  10650. <a href="#external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  10651. </p>
  10652. <p>
  10653. </p>
  10654. <table>
  10655. <thead>
  10656. <tr>
  10657. <th>Field</th>
  10658. <th>Description</th>
  10659. </tr>
  10660. </thead>
  10661. <tbody>
  10662. <tr>
  10663. <td>
  10664. <code>configMap</code></br>
  10665. <em>
  10666. <a href="#external-secrets.io/v1.TemplateRef">
  10667. TemplateRef
  10668. </a>
  10669. </em>
  10670. </td>
  10671. <td>
  10672. </td>
  10673. </tr>
  10674. <tr>
  10675. <td>
  10676. <code>secret</code></br>
  10677. <em>
  10678. <a href="#external-secrets.io/v1.TemplateRef">
  10679. TemplateRef
  10680. </a>
  10681. </em>
  10682. </td>
  10683. <td>
  10684. </td>
  10685. </tr>
  10686. <tr>
  10687. <td>
  10688. <code>target</code></br>
  10689. <em>
  10690. <a href="#external-secrets.io/v1.TemplateTarget">
  10691. TemplateTarget
  10692. </a>
  10693. </em>
  10694. </td>
  10695. <td>
  10696. <em>(Optional)</em>
  10697. </td>
  10698. </tr>
  10699. <tr>
  10700. <td>
  10701. <code>literal</code></br>
  10702. <em>
  10703. string
  10704. </em>
  10705. </td>
  10706. <td>
  10707. <em>(Optional)</em>
  10708. </td>
  10709. </tr>
  10710. </tbody>
  10711. </table>
  10712. <h3 id="external-secrets.io/v1.TemplateMergePolicy">TemplateMergePolicy
  10713. (<code>string</code> alias)</p></h3>
  10714. <p>
  10715. (<em>Appears on:</em>
  10716. <a href="#external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  10717. </p>
  10718. <p>
  10719. </p>
  10720. <table>
  10721. <thead>
  10722. <tr>
  10723. <th>Value</th>
  10724. <th>Description</th>
  10725. </tr>
  10726. </thead>
  10727. <tbody><tr><td><p>&#34;Merge&#34;</p></td>
  10728. <td></td>
  10729. </tr><tr><td><p>&#34;Replace&#34;</p></td>
  10730. <td></td>
  10731. </tr></tbody>
  10732. </table>
  10733. <h3 id="external-secrets.io/v1.TemplateRef">TemplateRef
  10734. </h3>
  10735. <p>
  10736. (<em>Appears on:</em>
  10737. <a href="#external-secrets.io/v1.TemplateFrom">TemplateFrom</a>)
  10738. </p>
  10739. <p>
  10740. </p>
  10741. <table>
  10742. <thead>
  10743. <tr>
  10744. <th>Field</th>
  10745. <th>Description</th>
  10746. </tr>
  10747. </thead>
  10748. <tbody>
  10749. <tr>
  10750. <td>
  10751. <code>name</code></br>
  10752. <em>
  10753. string
  10754. </em>
  10755. </td>
  10756. <td>
  10757. <p>The name of the ConfigMap/Secret resource</p>
  10758. </td>
  10759. </tr>
  10760. <tr>
  10761. <td>
  10762. <code>items</code></br>
  10763. <em>
  10764. <a href="#external-secrets.io/v1.TemplateRefItem">
  10765. []TemplateRefItem
  10766. </a>
  10767. </em>
  10768. </td>
  10769. <td>
  10770. <p>A list of keys in the ConfigMap/Secret to use as templates for Secret data</p>
  10771. </td>
  10772. </tr>
  10773. </tbody>
  10774. </table>
  10775. <h3 id="external-secrets.io/v1.TemplateRefItem">TemplateRefItem
  10776. </h3>
  10777. <p>
  10778. (<em>Appears on:</em>
  10779. <a href="#external-secrets.io/v1.TemplateRef">TemplateRef</a>)
  10780. </p>
  10781. <p>
  10782. </p>
  10783. <table>
  10784. <thead>
  10785. <tr>
  10786. <th>Field</th>
  10787. <th>Description</th>
  10788. </tr>
  10789. </thead>
  10790. <tbody>
  10791. <tr>
  10792. <td>
  10793. <code>key</code></br>
  10794. <em>
  10795. string
  10796. </em>
  10797. </td>
  10798. <td>
  10799. <p>A key in the ConfigMap/Secret</p>
  10800. </td>
  10801. </tr>
  10802. <tr>
  10803. <td>
  10804. <code>templateAs</code></br>
  10805. <em>
  10806. <a href="#external-secrets.io/v1.TemplateScope">
  10807. TemplateScope
  10808. </a>
  10809. </em>
  10810. </td>
  10811. <td>
  10812. </td>
  10813. </tr>
  10814. </tbody>
  10815. </table>
  10816. <h3 id="external-secrets.io/v1.TemplateScope">TemplateScope
  10817. (<code>string</code> alias)</p></h3>
  10818. <p>
  10819. (<em>Appears on:</em>
  10820. <a href="#external-secrets.io/v1.TemplateRefItem">TemplateRefItem</a>)
  10821. </p>
  10822. <p>
  10823. </p>
  10824. <table>
  10825. <thead>
  10826. <tr>
  10827. <th>Value</th>
  10828. <th>Description</th>
  10829. </tr>
  10830. </thead>
  10831. <tbody><tr><td><p>&#34;KeysAndValues&#34;</p></td>
  10832. <td></td>
  10833. </tr><tr><td><p>&#34;Values&#34;</p></td>
  10834. <td></td>
  10835. </tr></tbody>
  10836. </table>
  10837. <h3 id="external-secrets.io/v1.TemplateTarget">TemplateTarget
  10838. (<code>string</code> alias)</p></h3>
  10839. <p>
  10840. (<em>Appears on:</em>
  10841. <a href="#external-secrets.io/v1.TemplateFrom">TemplateFrom</a>)
  10842. </p>
  10843. <p>
  10844. </p>
  10845. <table>
  10846. <thead>
  10847. <tr>
  10848. <th>Value</th>
  10849. <th>Description</th>
  10850. </tr>
  10851. </thead>
  10852. <tbody><tr><td><p>&#34;Annotations&#34;</p></td>
  10853. <td></td>
  10854. </tr><tr><td><p>&#34;Data&#34;</p></td>
  10855. <td></td>
  10856. </tr><tr><td><p>&#34;Labels&#34;</p></td>
  10857. <td></td>
  10858. </tr></tbody>
  10859. </table>
  10860. <h3 id="external-secrets.io/v1.TokenAuth">TokenAuth
  10861. </h3>
  10862. <p>
  10863. (<em>Appears on:</em>
  10864. <a href="#external-secrets.io/v1.KubernetesAuth">KubernetesAuth</a>)
  10865. </p>
  10866. <p>
  10867. </p>
  10868. <table>
  10869. <thead>
  10870. <tr>
  10871. <th>Field</th>
  10872. <th>Description</th>
  10873. </tr>
  10874. </thead>
  10875. <tbody>
  10876. <tr>
  10877. <td>
  10878. <code>bearerToken</code></br>
  10879. <em>
  10880. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10881. External Secrets meta/v1.SecretKeySelector
  10882. </a>
  10883. </em>
  10884. </td>
  10885. <td>
  10886. </td>
  10887. </tr>
  10888. </tbody>
  10889. </table>
  10890. <h3 id="external-secrets.io/v1.TokenAuthCredentials">TokenAuthCredentials
  10891. </h3>
  10892. <p>
  10893. (<em>Appears on:</em>
  10894. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  10895. </p>
  10896. <p>
  10897. </p>
  10898. <table>
  10899. <thead>
  10900. <tr>
  10901. <th>Field</th>
  10902. <th>Description</th>
  10903. </tr>
  10904. </thead>
  10905. <tbody>
  10906. <tr>
  10907. <td>
  10908. <code>accessToken</code></br>
  10909. <em>
  10910. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10911. External Secrets meta/v1.SecretKeySelector
  10912. </a>
  10913. </em>
  10914. </td>
  10915. <td>
  10916. </td>
  10917. </tr>
  10918. </tbody>
  10919. </table>
  10920. <h3 id="external-secrets.io/v1.UniversalAuthCredentials">UniversalAuthCredentials
  10921. </h3>
  10922. <p>
  10923. (<em>Appears on:</em>
  10924. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  10925. </p>
  10926. <p>
  10927. </p>
  10928. <table>
  10929. <thead>
  10930. <tr>
  10931. <th>Field</th>
  10932. <th>Description</th>
  10933. </tr>
  10934. </thead>
  10935. <tbody>
  10936. <tr>
  10937. <td>
  10938. <code>clientId</code></br>
  10939. <em>
  10940. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10941. External Secrets meta/v1.SecretKeySelector
  10942. </a>
  10943. </em>
  10944. </td>
  10945. <td>
  10946. </td>
  10947. </tr>
  10948. <tr>
  10949. <td>
  10950. <code>clientSecret</code></br>
  10951. <em>
  10952. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10953. External Secrets meta/v1.SecretKeySelector
  10954. </a>
  10955. </em>
  10956. </td>
  10957. <td>
  10958. </td>
  10959. </tr>
  10960. </tbody>
  10961. </table>
  10962. <h3 id="external-secrets.io/v1.ValidationResult">ValidationResult
  10963. (<code>byte</code> alias)</p></h3>
  10964. <p>
  10965. (<em>Appears on:</em>
  10966. <a href="#external-secrets.io/v1.FakeProvider">FakeProvider</a>)
  10967. </p>
  10968. <p>
  10969. </p>
  10970. <table>
  10971. <thead>
  10972. <tr>
  10973. <th>Value</th>
  10974. <th>Description</th>
  10975. </tr>
  10976. </thead>
  10977. <tbody><tr><td><p>2</p></td>
  10978. <td><p>Error indicates that there is a misconfiguration.</p>
  10979. </td>
  10980. </tr><tr><td><p>0</p></td>
  10981. <td><p>Ready indicates that the client is configured correctly
  10982. and can be used.</p>
  10983. </td>
  10984. </tr><tr><td><p>1</p></td>
  10985. <td><p>Unknown indicates that the client can be used
  10986. but information is missing and it can not be validated.</p>
  10987. </td>
  10988. </tr></tbody>
  10989. </table>
  10990. <h3 id="external-secrets.io/v1.VaultAppRole">VaultAppRole
  10991. </h3>
  10992. <p>
  10993. (<em>Appears on:</em>
  10994. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  10995. </p>
  10996. <p>
  10997. <p>VaultAppRole authenticates with Vault using the App Role auth mechanism,
  10998. with the role and secret stored in a Kubernetes Secret resource.</p>
  10999. </p>
  11000. <table>
  11001. <thead>
  11002. <tr>
  11003. <th>Field</th>
  11004. <th>Description</th>
  11005. </tr>
  11006. </thead>
  11007. <tbody>
  11008. <tr>
  11009. <td>
  11010. <code>path</code></br>
  11011. <em>
  11012. string
  11013. </em>
  11014. </td>
  11015. <td>
  11016. <p>Path where the App Role authentication backend is mounted
  11017. in Vault, e.g: &ldquo;approle&rdquo;</p>
  11018. </td>
  11019. </tr>
  11020. <tr>
  11021. <td>
  11022. <code>roleId</code></br>
  11023. <em>
  11024. string
  11025. </em>
  11026. </td>
  11027. <td>
  11028. <em>(Optional)</em>
  11029. <p>RoleID configured in the App Role authentication backend when setting
  11030. up the authentication backend in Vault.</p>
  11031. </td>
  11032. </tr>
  11033. <tr>
  11034. <td>
  11035. <code>roleRef</code></br>
  11036. <em>
  11037. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11038. External Secrets meta/v1.SecretKeySelector
  11039. </a>
  11040. </em>
  11041. </td>
  11042. <td>
  11043. <em>(Optional)</em>
  11044. <p>Reference to a key in a Secret that contains the App Role ID used
  11045. to authenticate with Vault.
  11046. The <code>key</code> field must be specified and denotes which entry within the Secret
  11047. resource is used as the app role id.</p>
  11048. </td>
  11049. </tr>
  11050. <tr>
  11051. <td>
  11052. <code>secretRef</code></br>
  11053. <em>
  11054. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11055. External Secrets meta/v1.SecretKeySelector
  11056. </a>
  11057. </em>
  11058. </td>
  11059. <td>
  11060. <p>Reference to a key in a Secret that contains the App Role secret used
  11061. to authenticate with Vault.
  11062. The <code>key</code> field must be specified and denotes which entry within the Secret
  11063. resource is used as the app role secret.</p>
  11064. </td>
  11065. </tr>
  11066. </tbody>
  11067. </table>
  11068. <h3 id="external-secrets.io/v1.VaultAuth">VaultAuth
  11069. </h3>
  11070. <p>
  11071. (<em>Appears on:</em>
  11072. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  11073. </p>
  11074. <p>
  11075. <p>VaultAuth is the configuration used to authenticate with a Vault server.
  11076. 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>
  11077. can be specified. A namespace to authenticate against can optionally be specified.</p>
  11078. </p>
  11079. <table>
  11080. <thead>
  11081. <tr>
  11082. <th>Field</th>
  11083. <th>Description</th>
  11084. </tr>
  11085. </thead>
  11086. <tbody>
  11087. <tr>
  11088. <td>
  11089. <code>namespace</code></br>
  11090. <em>
  11091. string
  11092. </em>
  11093. </td>
  11094. <td>
  11095. <em>(Optional)</em>
  11096. <p>Name of the vault namespace to authenticate to. This can be different than the namespace your secret is in.
  11097. Namespaces is a set of features within Vault Enterprise that allows
  11098. Vault environments to support Secure Multi-tenancy. e.g: &ldquo;ns1&rdquo;.
  11099. More about namespaces can be found here <a href="https://www.vaultproject.io/docs/enterprise/namespaces">https://www.vaultproject.io/docs/enterprise/namespaces</a>
  11100. This will default to Vault.Namespace field if set, or empty otherwise</p>
  11101. </td>
  11102. </tr>
  11103. <tr>
  11104. <td>
  11105. <code>tokenSecretRef</code></br>
  11106. <em>
  11107. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11108. External Secrets meta/v1.SecretKeySelector
  11109. </a>
  11110. </em>
  11111. </td>
  11112. <td>
  11113. <em>(Optional)</em>
  11114. <p>TokenSecretRef authenticates with Vault by presenting a token.</p>
  11115. </td>
  11116. </tr>
  11117. <tr>
  11118. <td>
  11119. <code>appRole</code></br>
  11120. <em>
  11121. <a href="#external-secrets.io/v1.VaultAppRole">
  11122. VaultAppRole
  11123. </a>
  11124. </em>
  11125. </td>
  11126. <td>
  11127. <em>(Optional)</em>
  11128. <p>AppRole authenticates with Vault using the App Role auth mechanism,
  11129. with the role and secret stored in a Kubernetes Secret resource.</p>
  11130. </td>
  11131. </tr>
  11132. <tr>
  11133. <td>
  11134. <code>kubernetes</code></br>
  11135. <em>
  11136. <a href="#external-secrets.io/v1.VaultKubernetesAuth">
  11137. VaultKubernetesAuth
  11138. </a>
  11139. </em>
  11140. </td>
  11141. <td>
  11142. <em>(Optional)</em>
  11143. <p>Kubernetes authenticates with Vault by passing the ServiceAccount
  11144. token stored in the named Secret resource to the Vault server.</p>
  11145. </td>
  11146. </tr>
  11147. <tr>
  11148. <td>
  11149. <code>ldap</code></br>
  11150. <em>
  11151. <a href="#external-secrets.io/v1.VaultLdapAuth">
  11152. VaultLdapAuth
  11153. </a>
  11154. </em>
  11155. </td>
  11156. <td>
  11157. <em>(Optional)</em>
  11158. <p>Ldap authenticates with Vault by passing username/password pair using
  11159. the LDAP authentication method</p>
  11160. </td>
  11161. </tr>
  11162. <tr>
  11163. <td>
  11164. <code>jwt</code></br>
  11165. <em>
  11166. <a href="#external-secrets.io/v1.VaultJwtAuth">
  11167. VaultJwtAuth
  11168. </a>
  11169. </em>
  11170. </td>
  11171. <td>
  11172. <em>(Optional)</em>
  11173. <p>Jwt authenticates with Vault by passing role and JWT token using the
  11174. JWT/OIDC authentication method</p>
  11175. </td>
  11176. </tr>
  11177. <tr>
  11178. <td>
  11179. <code>cert</code></br>
  11180. <em>
  11181. <a href="#external-secrets.io/v1.VaultCertAuth">
  11182. VaultCertAuth
  11183. </a>
  11184. </em>
  11185. </td>
  11186. <td>
  11187. <em>(Optional)</em>
  11188. <p>Cert authenticates with TLS Certificates by passing client certificate, private key and ca certificate
  11189. Cert authentication method</p>
  11190. </td>
  11191. </tr>
  11192. <tr>
  11193. <td>
  11194. <code>iam</code></br>
  11195. <em>
  11196. <a href="#external-secrets.io/v1.VaultIamAuth">
  11197. VaultIamAuth
  11198. </a>
  11199. </em>
  11200. </td>
  11201. <td>
  11202. <em>(Optional)</em>
  11203. <p>Iam authenticates with vault by passing a special AWS request signed with AWS IAM credentials
  11204. AWS IAM authentication method</p>
  11205. </td>
  11206. </tr>
  11207. <tr>
  11208. <td>
  11209. <code>userPass</code></br>
  11210. <em>
  11211. <a href="#external-secrets.io/v1.VaultUserPassAuth">
  11212. VaultUserPassAuth
  11213. </a>
  11214. </em>
  11215. </td>
  11216. <td>
  11217. <em>(Optional)</em>
  11218. <p>UserPass authenticates with Vault by passing username/password pair</p>
  11219. </td>
  11220. </tr>
  11221. </tbody>
  11222. </table>
  11223. <h3 id="external-secrets.io/v1.VaultAwsAuth">VaultAwsAuth
  11224. </h3>
  11225. <p>
  11226. <p>VaultAwsAuth tells the controller how to do authentication with aws.
  11227. Only one of secretRef or jwt can be specified.
  11228. if none is specified the controller will try to load credentials from its own service account assuming it is IRSA enabled.</p>
  11229. </p>
  11230. <table>
  11231. <thead>
  11232. <tr>
  11233. <th>Field</th>
  11234. <th>Description</th>
  11235. </tr>
  11236. </thead>
  11237. <tbody>
  11238. <tr>
  11239. <td>
  11240. <code>secretRef</code></br>
  11241. <em>
  11242. <a href="#external-secrets.io/v1.VaultAwsAuthSecretRef">
  11243. VaultAwsAuthSecretRef
  11244. </a>
  11245. </em>
  11246. </td>
  11247. <td>
  11248. <em>(Optional)</em>
  11249. </td>
  11250. </tr>
  11251. <tr>
  11252. <td>
  11253. <code>jwt</code></br>
  11254. <em>
  11255. <a href="#external-secrets.io/v1.VaultAwsJWTAuth">
  11256. VaultAwsJWTAuth
  11257. </a>
  11258. </em>
  11259. </td>
  11260. <td>
  11261. <em>(Optional)</em>
  11262. </td>
  11263. </tr>
  11264. </tbody>
  11265. </table>
  11266. <h3 id="external-secrets.io/v1.VaultAwsAuthSecretRef">VaultAwsAuthSecretRef
  11267. </h3>
  11268. <p>
  11269. (<em>Appears on:</em>
  11270. <a href="#external-secrets.io/v1.VaultAwsAuth">VaultAwsAuth</a>,
  11271. <a href="#external-secrets.io/v1.VaultIamAuth">VaultIamAuth</a>)
  11272. </p>
  11273. <p>
  11274. <p>VaultAWSAuthSecretRef holds secret references for AWS credentials
  11275. both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.</p>
  11276. </p>
  11277. <table>
  11278. <thead>
  11279. <tr>
  11280. <th>Field</th>
  11281. <th>Description</th>
  11282. </tr>
  11283. </thead>
  11284. <tbody>
  11285. <tr>
  11286. <td>
  11287. <code>accessKeyIDSecretRef</code></br>
  11288. <em>
  11289. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11290. External Secrets meta/v1.SecretKeySelector
  11291. </a>
  11292. </em>
  11293. </td>
  11294. <td>
  11295. <em>(Optional)</em>
  11296. <p>The AccessKeyID is used for authentication</p>
  11297. </td>
  11298. </tr>
  11299. <tr>
  11300. <td>
  11301. <code>secretAccessKeySecretRef</code></br>
  11302. <em>
  11303. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11304. External Secrets meta/v1.SecretKeySelector
  11305. </a>
  11306. </em>
  11307. </td>
  11308. <td>
  11309. <em>(Optional)</em>
  11310. <p>The SecretAccessKey is used for authentication</p>
  11311. </td>
  11312. </tr>
  11313. <tr>
  11314. <td>
  11315. <code>sessionTokenSecretRef</code></br>
  11316. <em>
  11317. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11318. External Secrets meta/v1.SecretKeySelector
  11319. </a>
  11320. </em>
  11321. </td>
  11322. <td>
  11323. <em>(Optional)</em>
  11324. <p>The SessionToken used for authentication
  11325. This must be defined if AccessKeyID and SecretAccessKey are temporary credentials
  11326. 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>
  11327. </td>
  11328. </tr>
  11329. </tbody>
  11330. </table>
  11331. <h3 id="external-secrets.io/v1.VaultAwsJWTAuth">VaultAwsJWTAuth
  11332. </h3>
  11333. <p>
  11334. (<em>Appears on:</em>
  11335. <a href="#external-secrets.io/v1.VaultAwsAuth">VaultAwsAuth</a>,
  11336. <a href="#external-secrets.io/v1.VaultIamAuth">VaultIamAuth</a>)
  11337. </p>
  11338. <p>
  11339. <p>VaultAwsJWTAuth Authenticate against AWS using service account tokens.</p>
  11340. </p>
  11341. <table>
  11342. <thead>
  11343. <tr>
  11344. <th>Field</th>
  11345. <th>Description</th>
  11346. </tr>
  11347. </thead>
  11348. <tbody>
  11349. <tr>
  11350. <td>
  11351. <code>serviceAccountRef</code></br>
  11352. <em>
  11353. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  11354. External Secrets meta/v1.ServiceAccountSelector
  11355. </a>
  11356. </em>
  11357. </td>
  11358. <td>
  11359. <em>(Optional)</em>
  11360. </td>
  11361. </tr>
  11362. </tbody>
  11363. </table>
  11364. <h3 id="external-secrets.io/v1.VaultCertAuth">VaultCertAuth
  11365. </h3>
  11366. <p>
  11367. (<em>Appears on:</em>
  11368. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  11369. </p>
  11370. <p>
  11371. <p>VaultCertAuth authenticates with Vault using the JWT/OIDC authentication
  11372. method, with the role name and token stored in a Kubernetes Secret resource.</p>
  11373. </p>
  11374. <table>
  11375. <thead>
  11376. <tr>
  11377. <th>Field</th>
  11378. <th>Description</th>
  11379. </tr>
  11380. </thead>
  11381. <tbody>
  11382. <tr>
  11383. <td>
  11384. <code>clientCert</code></br>
  11385. <em>
  11386. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11387. External Secrets meta/v1.SecretKeySelector
  11388. </a>
  11389. </em>
  11390. </td>
  11391. <td>
  11392. <em>(Optional)</em>
  11393. <p>ClientCert is a certificate to authenticate using the Cert Vault
  11394. authentication method</p>
  11395. </td>
  11396. </tr>
  11397. <tr>
  11398. <td>
  11399. <code>secretRef</code></br>
  11400. <em>
  11401. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11402. External Secrets meta/v1.SecretKeySelector
  11403. </a>
  11404. </em>
  11405. </td>
  11406. <td>
  11407. <em>(Optional)</em>
  11408. <p>SecretRef to a key in a Secret resource containing client private key to
  11409. authenticate with Vault using the Cert authentication method</p>
  11410. </td>
  11411. </tr>
  11412. </tbody>
  11413. </table>
  11414. <h3 id="external-secrets.io/v1.VaultCheckAndSet">VaultCheckAndSet
  11415. </h3>
  11416. <p>
  11417. (<em>Appears on:</em>
  11418. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  11419. </p>
  11420. <p>
  11421. <p>VaultCheckAndSet defines the Check-And-Set (CAS) settings for Vault KV v2 PushSecret operations.</p>
  11422. </p>
  11423. <table>
  11424. <thead>
  11425. <tr>
  11426. <th>Field</th>
  11427. <th>Description</th>
  11428. </tr>
  11429. </thead>
  11430. <tbody>
  11431. <tr>
  11432. <td>
  11433. <code>required</code></br>
  11434. <em>
  11435. bool
  11436. </em>
  11437. </td>
  11438. <td>
  11439. <em>(Optional)</em>
  11440. <p>Required when true, all write operations must include a check-and-set parameter.
  11441. This helps prevent unintentional overwrites of secrets.</p>
  11442. </td>
  11443. </tr>
  11444. </tbody>
  11445. </table>
  11446. <h3 id="external-secrets.io/v1.VaultClientTLS">VaultClientTLS
  11447. </h3>
  11448. <p>
  11449. (<em>Appears on:</em>
  11450. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  11451. </p>
  11452. <p>
  11453. <p>VaultClientTLS is the configuration used for client side related TLS communication,
  11454. when the Vault server requires mutual authentication.</p>
  11455. </p>
  11456. <table>
  11457. <thead>
  11458. <tr>
  11459. <th>Field</th>
  11460. <th>Description</th>
  11461. </tr>
  11462. </thead>
  11463. <tbody>
  11464. <tr>
  11465. <td>
  11466. <code>certSecretRef</code></br>
  11467. <em>
  11468. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11469. External Secrets meta/v1.SecretKeySelector
  11470. </a>
  11471. </em>
  11472. </td>
  11473. <td>
  11474. <em>(Optional)</em>
  11475. <p>CertSecretRef is a certificate added to the transport layer
  11476. when communicating with the Vault server.
  11477. If no key for the Secret is specified, external-secret will default to &lsquo;tls.crt&rsquo;.</p>
  11478. </td>
  11479. </tr>
  11480. <tr>
  11481. <td>
  11482. <code>keySecretRef</code></br>
  11483. <em>
  11484. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11485. External Secrets meta/v1.SecretKeySelector
  11486. </a>
  11487. </em>
  11488. </td>
  11489. <td>
  11490. <em>(Optional)</em>
  11491. <p>KeySecretRef to a key in a Secret resource containing client private key
  11492. added to the transport layer when communicating with the Vault server.
  11493. If no key for the Secret is specified, external-secret will default to &lsquo;tls.key&rsquo;.</p>
  11494. </td>
  11495. </tr>
  11496. </tbody>
  11497. </table>
  11498. <h3 id="external-secrets.io/v1.VaultIamAuth">VaultIamAuth
  11499. </h3>
  11500. <p>
  11501. (<em>Appears on:</em>
  11502. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  11503. </p>
  11504. <p>
  11505. <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>
  11506. <p>When JWTAuth and SecretRef are not specified, the provider will use the controller pod&rsquo;s
  11507. identity to authenticate with AWS. This supports both IRSA and EKS Pod Identity.</p>
  11508. </p>
  11509. <table>
  11510. <thead>
  11511. <tr>
  11512. <th>Field</th>
  11513. <th>Description</th>
  11514. </tr>
  11515. </thead>
  11516. <tbody>
  11517. <tr>
  11518. <td>
  11519. <code>path</code></br>
  11520. <em>
  11521. string
  11522. </em>
  11523. </td>
  11524. <td>
  11525. <em>(Optional)</em>
  11526. <p>Path where the AWS auth method is enabled in Vault, e.g: &ldquo;aws&rdquo;</p>
  11527. </td>
  11528. </tr>
  11529. <tr>
  11530. <td>
  11531. <code>region</code></br>
  11532. <em>
  11533. string
  11534. </em>
  11535. </td>
  11536. <td>
  11537. <em>(Optional)</em>
  11538. <p>AWS region</p>
  11539. </td>
  11540. </tr>
  11541. <tr>
  11542. <td>
  11543. <code>role</code></br>
  11544. <em>
  11545. string
  11546. </em>
  11547. </td>
  11548. <td>
  11549. <em>(Optional)</em>
  11550. <p>This is the AWS role to be assumed before talking to vault</p>
  11551. </td>
  11552. </tr>
  11553. <tr>
  11554. <td>
  11555. <code>vaultRole</code></br>
  11556. <em>
  11557. string
  11558. </em>
  11559. </td>
  11560. <td>
  11561. <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>
  11562. </td>
  11563. </tr>
  11564. <tr>
  11565. <td>
  11566. <code>externalID</code></br>
  11567. <em>
  11568. string
  11569. </em>
  11570. </td>
  11571. <td>
  11572. <p>AWS External ID set on assumed IAM roles</p>
  11573. </td>
  11574. </tr>
  11575. <tr>
  11576. <td>
  11577. <code>vaultAwsIamServerID</code></br>
  11578. <em>
  11579. string
  11580. </em>
  11581. </td>
  11582. <td>
  11583. <em>(Optional)</em>
  11584. <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>
  11585. </td>
  11586. </tr>
  11587. <tr>
  11588. <td>
  11589. <code>secretRef</code></br>
  11590. <em>
  11591. <a href="#external-secrets.io/v1.VaultAwsAuthSecretRef">
  11592. VaultAwsAuthSecretRef
  11593. </a>
  11594. </em>
  11595. </td>
  11596. <td>
  11597. <em>(Optional)</em>
  11598. <p>Specify credentials in a Secret object</p>
  11599. </td>
  11600. </tr>
  11601. <tr>
  11602. <td>
  11603. <code>jwt</code></br>
  11604. <em>
  11605. <a href="#external-secrets.io/v1.VaultAwsJWTAuth">
  11606. VaultAwsJWTAuth
  11607. </a>
  11608. </em>
  11609. </td>
  11610. <td>
  11611. <em>(Optional)</em>
  11612. <p>Specify a service account with IRSA enabled</p>
  11613. </td>
  11614. </tr>
  11615. </tbody>
  11616. </table>
  11617. <h3 id="external-secrets.io/v1.VaultJwtAuth">VaultJwtAuth
  11618. </h3>
  11619. <p>
  11620. (<em>Appears on:</em>
  11621. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  11622. </p>
  11623. <p>
  11624. <p>VaultJwtAuth authenticates with Vault using the JWT/OIDC authentication
  11625. method, with the role name and a token stored in a Kubernetes Secret resource or
  11626. a Kubernetes service account token retrieved via <code>TokenRequest</code>.</p>
  11627. </p>
  11628. <table>
  11629. <thead>
  11630. <tr>
  11631. <th>Field</th>
  11632. <th>Description</th>
  11633. </tr>
  11634. </thead>
  11635. <tbody>
  11636. <tr>
  11637. <td>
  11638. <code>path</code></br>
  11639. <em>
  11640. string
  11641. </em>
  11642. </td>
  11643. <td>
  11644. <p>Path where the JWT authentication backend is mounted
  11645. in Vault, e.g: &ldquo;jwt&rdquo;</p>
  11646. </td>
  11647. </tr>
  11648. <tr>
  11649. <td>
  11650. <code>role</code></br>
  11651. <em>
  11652. string
  11653. </em>
  11654. </td>
  11655. <td>
  11656. <em>(Optional)</em>
  11657. <p>Role is a JWT role to authenticate using the JWT/OIDC Vault
  11658. authentication method</p>
  11659. </td>
  11660. </tr>
  11661. <tr>
  11662. <td>
  11663. <code>secretRef</code></br>
  11664. <em>
  11665. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11666. External Secrets meta/v1.SecretKeySelector
  11667. </a>
  11668. </em>
  11669. </td>
  11670. <td>
  11671. <em>(Optional)</em>
  11672. <p>Optional SecretRef that refers to a key in a Secret resource containing JWT token to
  11673. authenticate with Vault using the JWT/OIDC authentication method.</p>
  11674. </td>
  11675. </tr>
  11676. <tr>
  11677. <td>
  11678. <code>kubernetesServiceAccountToken</code></br>
  11679. <em>
  11680. <a href="#external-secrets.io/v1.VaultKubernetesServiceAccountTokenAuth">
  11681. VaultKubernetesServiceAccountTokenAuth
  11682. </a>
  11683. </em>
  11684. </td>
  11685. <td>
  11686. <em>(Optional)</em>
  11687. <p>Optional ServiceAccountToken specifies the Kubernetes service account for which to request
  11688. a token for with the <code>TokenRequest</code> API.</p>
  11689. </td>
  11690. </tr>
  11691. </tbody>
  11692. </table>
  11693. <h3 id="external-secrets.io/v1.VaultKVStoreVersion">VaultKVStoreVersion
  11694. (<code>string</code> alias)</p></h3>
  11695. <p>
  11696. (<em>Appears on:</em>
  11697. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  11698. </p>
  11699. <p>
  11700. </p>
  11701. <table>
  11702. <thead>
  11703. <tr>
  11704. <th>Value</th>
  11705. <th>Description</th>
  11706. </tr>
  11707. </thead>
  11708. <tbody><tr><td><p>&#34;v1&#34;</p></td>
  11709. <td></td>
  11710. </tr><tr><td><p>&#34;v2&#34;</p></td>
  11711. <td></td>
  11712. </tr></tbody>
  11713. </table>
  11714. <h3 id="external-secrets.io/v1.VaultKubernetesAuth">VaultKubernetesAuth
  11715. </h3>
  11716. <p>
  11717. (<em>Appears on:</em>
  11718. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  11719. </p>
  11720. <p>
  11721. <p>Authenticate against Vault using a Kubernetes ServiceAccount token stored in
  11722. a Secret.</p>
  11723. </p>
  11724. <table>
  11725. <thead>
  11726. <tr>
  11727. <th>Field</th>
  11728. <th>Description</th>
  11729. </tr>
  11730. </thead>
  11731. <tbody>
  11732. <tr>
  11733. <td>
  11734. <code>mountPath</code></br>
  11735. <em>
  11736. string
  11737. </em>
  11738. </td>
  11739. <td>
  11740. <p>Path where the Kubernetes authentication backend is mounted in Vault, e.g:
  11741. &ldquo;kubernetes&rdquo;</p>
  11742. </td>
  11743. </tr>
  11744. <tr>
  11745. <td>
  11746. <code>serviceAccountRef</code></br>
  11747. <em>
  11748. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  11749. External Secrets meta/v1.ServiceAccountSelector
  11750. </a>
  11751. </em>
  11752. </td>
  11753. <td>
  11754. <em>(Optional)</em>
  11755. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  11756. If the service account is specified, the service account secret token JWT will be used
  11757. for authenticating with Vault. If the service account selector is not supplied,
  11758. the secretRef will be used instead.</p>
  11759. </td>
  11760. </tr>
  11761. <tr>
  11762. <td>
  11763. <code>secretRef</code></br>
  11764. <em>
  11765. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11766. External Secrets meta/v1.SecretKeySelector
  11767. </a>
  11768. </em>
  11769. </td>
  11770. <td>
  11771. <em>(Optional)</em>
  11772. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  11773. for authenticating with Vault. If a name is specified without a key,
  11774. <code>token</code> is the default. If one is not specified, the one bound to
  11775. the controller will be used.</p>
  11776. </td>
  11777. </tr>
  11778. <tr>
  11779. <td>
  11780. <code>role</code></br>
  11781. <em>
  11782. string
  11783. </em>
  11784. </td>
  11785. <td>
  11786. <p>A required field containing the Vault Role to assume. A Role binds a
  11787. Kubernetes ServiceAccount with a set of Vault policies.</p>
  11788. </td>
  11789. </tr>
  11790. </tbody>
  11791. </table>
  11792. <h3 id="external-secrets.io/v1.VaultKubernetesServiceAccountTokenAuth">VaultKubernetesServiceAccountTokenAuth
  11793. </h3>
  11794. <p>
  11795. (<em>Appears on:</em>
  11796. <a href="#external-secrets.io/v1.VaultJwtAuth">VaultJwtAuth</a>)
  11797. </p>
  11798. <p>
  11799. <p>VaultKubernetesServiceAccountTokenAuth authenticates with Vault using a temporary
  11800. Kubernetes service account token retrieved by the <code>TokenRequest</code> API.</p>
  11801. </p>
  11802. <table>
  11803. <thead>
  11804. <tr>
  11805. <th>Field</th>
  11806. <th>Description</th>
  11807. </tr>
  11808. </thead>
  11809. <tbody>
  11810. <tr>
  11811. <td>
  11812. <code>serviceAccountRef</code></br>
  11813. <em>
  11814. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  11815. External Secrets meta/v1.ServiceAccountSelector
  11816. </a>
  11817. </em>
  11818. </td>
  11819. <td>
  11820. <p>Service account field containing the name of a kubernetes ServiceAccount.</p>
  11821. </td>
  11822. </tr>
  11823. <tr>
  11824. <td>
  11825. <code>audiences</code></br>
  11826. <em>
  11827. []string
  11828. </em>
  11829. </td>
  11830. <td>
  11831. <em>(Optional)</em>
  11832. <p>Optional audiences field that will be used to request a temporary Kubernetes service
  11833. account token for the service account referenced by <code>serviceAccountRef</code>.
  11834. Defaults to a single audience <code>vault</code> it not specified.
  11835. Deprecated: use serviceAccountRef.Audiences instead</p>
  11836. </td>
  11837. </tr>
  11838. <tr>
  11839. <td>
  11840. <code>expirationSeconds</code></br>
  11841. <em>
  11842. int64
  11843. </em>
  11844. </td>
  11845. <td>
  11846. <em>(Optional)</em>
  11847. <p>Optional expiration time in seconds that will be used to request a temporary
  11848. Kubernetes service account token for the service account referenced by
  11849. <code>serviceAccountRef</code>.
  11850. Deprecated: this will be removed in the future.
  11851. Defaults to 10 minutes.</p>
  11852. </td>
  11853. </tr>
  11854. </tbody>
  11855. </table>
  11856. <h3 id="external-secrets.io/v1.VaultLdapAuth">VaultLdapAuth
  11857. </h3>
  11858. <p>
  11859. (<em>Appears on:</em>
  11860. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  11861. </p>
  11862. <p>
  11863. <p>VaultLdapAuth authenticates with Vault using the LDAP authentication method,
  11864. with the username and password stored in a Kubernetes Secret resource.</p>
  11865. </p>
  11866. <table>
  11867. <thead>
  11868. <tr>
  11869. <th>Field</th>
  11870. <th>Description</th>
  11871. </tr>
  11872. </thead>
  11873. <tbody>
  11874. <tr>
  11875. <td>
  11876. <code>path</code></br>
  11877. <em>
  11878. string
  11879. </em>
  11880. </td>
  11881. <td>
  11882. <p>Path where the LDAP authentication backend is mounted
  11883. in Vault, e.g: &ldquo;ldap&rdquo;</p>
  11884. </td>
  11885. </tr>
  11886. <tr>
  11887. <td>
  11888. <code>username</code></br>
  11889. <em>
  11890. string
  11891. </em>
  11892. </td>
  11893. <td>
  11894. <p>Username is an LDAP username used to authenticate using the LDAP Vault
  11895. authentication method</p>
  11896. </td>
  11897. </tr>
  11898. <tr>
  11899. <td>
  11900. <code>secretRef</code></br>
  11901. <em>
  11902. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11903. External Secrets meta/v1.SecretKeySelector
  11904. </a>
  11905. </em>
  11906. </td>
  11907. <td>
  11908. <em>(Optional)</em>
  11909. <p>SecretRef to a key in a Secret resource containing password for the LDAP
  11910. user used to authenticate with Vault using the LDAP authentication
  11911. method</p>
  11912. </td>
  11913. </tr>
  11914. </tbody>
  11915. </table>
  11916. <h3 id="external-secrets.io/v1.VaultProvider">VaultProvider
  11917. </h3>
  11918. <p>
  11919. (<em>Appears on:</em>
  11920. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  11921. </p>
  11922. <p>
  11923. <p>Configures an store to sync secrets using a HashiCorp Vault
  11924. KV backend.</p>
  11925. </p>
  11926. <table>
  11927. <thead>
  11928. <tr>
  11929. <th>Field</th>
  11930. <th>Description</th>
  11931. </tr>
  11932. </thead>
  11933. <tbody>
  11934. <tr>
  11935. <td>
  11936. <code>auth</code></br>
  11937. <em>
  11938. <a href="#external-secrets.io/v1.VaultAuth">
  11939. VaultAuth
  11940. </a>
  11941. </em>
  11942. </td>
  11943. <td>
  11944. <p>Auth configures how secret-manager authenticates with the Vault server.</p>
  11945. </td>
  11946. </tr>
  11947. <tr>
  11948. <td>
  11949. <code>server</code></br>
  11950. <em>
  11951. string
  11952. </em>
  11953. </td>
  11954. <td>
  11955. <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>
  11956. </td>
  11957. </tr>
  11958. <tr>
  11959. <td>
  11960. <code>path</code></br>
  11961. <em>
  11962. string
  11963. </em>
  11964. </td>
  11965. <td>
  11966. <em>(Optional)</em>
  11967. <p>Path is the mount path of the Vault KV backend endpoint, e.g:
  11968. &ldquo;secret&rdquo;. The v2 KV secret engine version specific &ldquo;/data&rdquo; path suffix
  11969. for fetching secrets from Vault is optional and will be appended
  11970. if not present in specified path.</p>
  11971. </td>
  11972. </tr>
  11973. <tr>
  11974. <td>
  11975. <code>version</code></br>
  11976. <em>
  11977. <a href="#external-secrets.io/v1.VaultKVStoreVersion">
  11978. VaultKVStoreVersion
  11979. </a>
  11980. </em>
  11981. </td>
  11982. <td>
  11983. <p>Version is the Vault KV secret engine version. This can be either &ldquo;v1&rdquo; or
  11984. &ldquo;v2&rdquo;. Version defaults to &ldquo;v2&rdquo;.</p>
  11985. </td>
  11986. </tr>
  11987. <tr>
  11988. <td>
  11989. <code>namespace</code></br>
  11990. <em>
  11991. string
  11992. </em>
  11993. </td>
  11994. <td>
  11995. <em>(Optional)</em>
  11996. <p>Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows
  11997. Vault environments to support Secure Multi-tenancy. e.g: &ldquo;ns1&rdquo;.
  11998. 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>
  11999. </td>
  12000. </tr>
  12001. <tr>
  12002. <td>
  12003. <code>caBundle</code></br>
  12004. <em>
  12005. []byte
  12006. </em>
  12007. </td>
  12008. <td>
  12009. <em>(Optional)</em>
  12010. <p>PEM encoded CA bundle used to validate Vault server certificate. Only used
  12011. if the Server URL is using HTTPS protocol. This parameter is ignored for
  12012. plain HTTP protocol connection. If not set the system root certificates
  12013. are used to validate the TLS connection.</p>
  12014. </td>
  12015. </tr>
  12016. <tr>
  12017. <td>
  12018. <code>tls</code></br>
  12019. <em>
  12020. <a href="#external-secrets.io/v1.VaultClientTLS">
  12021. VaultClientTLS
  12022. </a>
  12023. </em>
  12024. </td>
  12025. <td>
  12026. <em>(Optional)</em>
  12027. <p>The configuration used for client side related TLS communication, when the Vault server
  12028. requires mutual authentication. Only used if the Server URL is using HTTPS protocol.
  12029. This parameter is ignored for plain HTTP protocol connection.
  12030. It&rsquo;s worth noting this configuration is different from the &ldquo;TLS certificates auth method&rdquo;,
  12031. which is available under the <code>auth.cert</code> section.</p>
  12032. </td>
  12033. </tr>
  12034. <tr>
  12035. <td>
  12036. <code>caProvider</code></br>
  12037. <em>
  12038. <a href="#external-secrets.io/v1.CAProvider">
  12039. CAProvider
  12040. </a>
  12041. </em>
  12042. </td>
  12043. <td>
  12044. <em>(Optional)</em>
  12045. <p>The provider for the CA bundle to use to validate Vault server certificate.</p>
  12046. </td>
  12047. </tr>
  12048. <tr>
  12049. <td>
  12050. <code>readYourWrites</code></br>
  12051. <em>
  12052. bool
  12053. </em>
  12054. </td>
  12055. <td>
  12056. <em>(Optional)</em>
  12057. <p>ReadYourWrites ensures isolated read-after-write semantics by
  12058. providing discovered cluster replication states in each request.
  12059. More information about eventual consistency in Vault can be found here
  12060. <a href="https://www.vaultproject.io/docs/enterprise/consistency">https://www.vaultproject.io/docs/enterprise/consistency</a></p>
  12061. </td>
  12062. </tr>
  12063. <tr>
  12064. <td>
  12065. <code>forwardInconsistent</code></br>
  12066. <em>
  12067. bool
  12068. </em>
  12069. </td>
  12070. <td>
  12071. <em>(Optional)</em>
  12072. <p>ForwardInconsistent tells Vault to forward read-after-write requests to the Vault
  12073. leader instead of simply retrying within a loop. This can increase performance if
  12074. the option is enabled serverside.
  12075. <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>
  12076. </td>
  12077. </tr>
  12078. <tr>
  12079. <td>
  12080. <code>headers</code></br>
  12081. <em>
  12082. map[string]string
  12083. </em>
  12084. </td>
  12085. <td>
  12086. <em>(Optional)</em>
  12087. <p>Headers to be added in Vault request</p>
  12088. </td>
  12089. </tr>
  12090. <tr>
  12091. <td>
  12092. <code>checkAndSet</code></br>
  12093. <em>
  12094. <a href="#external-secrets.io/v1.VaultCheckAndSet">
  12095. VaultCheckAndSet
  12096. </a>
  12097. </em>
  12098. </td>
  12099. <td>
  12100. <em>(Optional)</em>
  12101. <p>CheckAndSet defines the Check-And-Set (CAS) settings for PushSecret operations.
  12102. Only applies to Vault KV v2 stores. When enabled, write operations must include
  12103. the current version of the secret to prevent unintentional overwrites.</p>
  12104. </td>
  12105. </tr>
  12106. </tbody>
  12107. </table>
  12108. <h3 id="external-secrets.io/v1.VaultUserPassAuth">VaultUserPassAuth
  12109. </h3>
  12110. <p>
  12111. (<em>Appears on:</em>
  12112. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  12113. </p>
  12114. <p>
  12115. <p>VaultUserPassAuth authenticates with Vault using UserPass authentication method,
  12116. with the username and password stored in a Kubernetes Secret resource.</p>
  12117. </p>
  12118. <table>
  12119. <thead>
  12120. <tr>
  12121. <th>Field</th>
  12122. <th>Description</th>
  12123. </tr>
  12124. </thead>
  12125. <tbody>
  12126. <tr>
  12127. <td>
  12128. <code>path</code></br>
  12129. <em>
  12130. string
  12131. </em>
  12132. </td>
  12133. <td>
  12134. <p>Path where the UserPassword authentication backend is mounted
  12135. in Vault, e.g: &ldquo;userpass&rdquo;</p>
  12136. </td>
  12137. </tr>
  12138. <tr>
  12139. <td>
  12140. <code>username</code></br>
  12141. <em>
  12142. string
  12143. </em>
  12144. </td>
  12145. <td>
  12146. <p>Username is a username used to authenticate using the UserPass Vault
  12147. authentication method</p>
  12148. </td>
  12149. </tr>
  12150. <tr>
  12151. <td>
  12152. <code>secretRef</code></br>
  12153. <em>
  12154. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  12155. External Secrets meta/v1.SecretKeySelector
  12156. </a>
  12157. </em>
  12158. </td>
  12159. <td>
  12160. <em>(Optional)</em>
  12161. <p>SecretRef to a key in a Secret resource containing password for the
  12162. user used to authenticate with Vault using the UserPass authentication
  12163. method</p>
  12164. </td>
  12165. </tr>
  12166. </tbody>
  12167. </table>
  12168. <h3 id="external-secrets.io/v1.WebhookCAProvider">WebhookCAProvider
  12169. </h3>
  12170. <p>
  12171. (<em>Appears on:</em>
  12172. <a href="#external-secrets.io/v1.WebhookProvider">WebhookProvider</a>)
  12173. </p>
  12174. <p>
  12175. <p>Defines a location to fetch the cert for the webhook provider from.</p>
  12176. </p>
  12177. <table>
  12178. <thead>
  12179. <tr>
  12180. <th>Field</th>
  12181. <th>Description</th>
  12182. </tr>
  12183. </thead>
  12184. <tbody>
  12185. <tr>
  12186. <td>
  12187. <code>type</code></br>
  12188. <em>
  12189. <a href="#external-secrets.io/v1.WebhookCAProviderType">
  12190. WebhookCAProviderType
  12191. </a>
  12192. </em>
  12193. </td>
  12194. <td>
  12195. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  12196. </td>
  12197. </tr>
  12198. <tr>
  12199. <td>
  12200. <code>name</code></br>
  12201. <em>
  12202. string
  12203. </em>
  12204. </td>
  12205. <td>
  12206. <p>The name of the object located at the provider type.</p>
  12207. </td>
  12208. </tr>
  12209. <tr>
  12210. <td>
  12211. <code>key</code></br>
  12212. <em>
  12213. string
  12214. </em>
  12215. </td>
  12216. <td>
  12217. <p>The key where the CA certificate can be found in the Secret or ConfigMap.</p>
  12218. </td>
  12219. </tr>
  12220. <tr>
  12221. <td>
  12222. <code>namespace</code></br>
  12223. <em>
  12224. string
  12225. </em>
  12226. </td>
  12227. <td>
  12228. <em>(Optional)</em>
  12229. <p>The namespace the Provider type is in.</p>
  12230. </td>
  12231. </tr>
  12232. </tbody>
  12233. </table>
  12234. <h3 id="external-secrets.io/v1.WebhookCAProviderType">WebhookCAProviderType
  12235. (<code>string</code> alias)</p></h3>
  12236. <p>
  12237. (<em>Appears on:</em>
  12238. <a href="#external-secrets.io/v1.WebhookCAProvider">WebhookCAProvider</a>)
  12239. </p>
  12240. <p>
  12241. </p>
  12242. <table>
  12243. <thead>
  12244. <tr>
  12245. <th>Value</th>
  12246. <th>Description</th>
  12247. </tr>
  12248. </thead>
  12249. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  12250. <td></td>
  12251. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  12252. <td></td>
  12253. </tr></tbody>
  12254. </table>
  12255. <h3 id="external-secrets.io/v1.WebhookProvider">WebhookProvider
  12256. </h3>
  12257. <p>
  12258. (<em>Appears on:</em>
  12259. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  12260. </p>
  12261. <p>
  12262. <p>WebHookProvider Configures an store to sync secrets from simple web apis.</p>
  12263. </p>
  12264. <table>
  12265. <thead>
  12266. <tr>
  12267. <th>Field</th>
  12268. <th>Description</th>
  12269. </tr>
  12270. </thead>
  12271. <tbody>
  12272. <tr>
  12273. <td>
  12274. <code>method</code></br>
  12275. <em>
  12276. string
  12277. </em>
  12278. </td>
  12279. <td>
  12280. <p>Webhook Method</p>
  12281. </td>
  12282. </tr>
  12283. <tr>
  12284. <td>
  12285. <code>url</code></br>
  12286. <em>
  12287. string
  12288. </em>
  12289. </td>
  12290. <td>
  12291. <p>Webhook url to call</p>
  12292. </td>
  12293. </tr>
  12294. <tr>
  12295. <td>
  12296. <code>headers</code></br>
  12297. <em>
  12298. map[string]string
  12299. </em>
  12300. </td>
  12301. <td>
  12302. <em>(Optional)</em>
  12303. <p>Headers</p>
  12304. </td>
  12305. </tr>
  12306. <tr>
  12307. <td>
  12308. <code>auth</code></br>
  12309. <em>
  12310. <a href="#external-secrets.io/v1.AuthorizationProtocol">
  12311. AuthorizationProtocol
  12312. </a>
  12313. </em>
  12314. </td>
  12315. <td>
  12316. <em>(Optional)</em>
  12317. <p>Auth specifies a authorization protocol. Only one protocol may be set.</p>
  12318. </td>
  12319. </tr>
  12320. <tr>
  12321. <td>
  12322. <code>body</code></br>
  12323. <em>
  12324. string
  12325. </em>
  12326. </td>
  12327. <td>
  12328. <em>(Optional)</em>
  12329. <p>Body</p>
  12330. </td>
  12331. </tr>
  12332. <tr>
  12333. <td>
  12334. <code>timeout</code></br>
  12335. <em>
  12336. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  12337. Kubernetes meta/v1.Duration
  12338. </a>
  12339. </em>
  12340. </td>
  12341. <td>
  12342. <em>(Optional)</em>
  12343. <p>Timeout</p>
  12344. </td>
  12345. </tr>
  12346. <tr>
  12347. <td>
  12348. <code>result</code></br>
  12349. <em>
  12350. <a href="#external-secrets.io/v1.WebhookResult">
  12351. WebhookResult
  12352. </a>
  12353. </em>
  12354. </td>
  12355. <td>
  12356. <p>Result formatting</p>
  12357. </td>
  12358. </tr>
  12359. <tr>
  12360. <td>
  12361. <code>secrets</code></br>
  12362. <em>
  12363. <a href="#external-secrets.io/v1.WebhookSecret">
  12364. []WebhookSecret
  12365. </a>
  12366. </em>
  12367. </td>
  12368. <td>
  12369. <em>(Optional)</em>
  12370. <p>Secrets to fill in templates
  12371. These secrets will be passed to the templating function as key value pairs under the given name</p>
  12372. </td>
  12373. </tr>
  12374. <tr>
  12375. <td>
  12376. <code>caBundle</code></br>
  12377. <em>
  12378. []byte
  12379. </em>
  12380. </td>
  12381. <td>
  12382. <em>(Optional)</em>
  12383. <p>PEM encoded CA bundle used to validate webhook server certificate. Only used
  12384. if the Server URL is using HTTPS protocol. This parameter is ignored for
  12385. plain HTTP protocol connection. If not set the system root certificates
  12386. are used to validate the TLS connection.</p>
  12387. </td>
  12388. </tr>
  12389. <tr>
  12390. <td>
  12391. <code>caProvider</code></br>
  12392. <em>
  12393. <a href="#external-secrets.io/v1.WebhookCAProvider">
  12394. WebhookCAProvider
  12395. </a>
  12396. </em>
  12397. </td>
  12398. <td>
  12399. <em>(Optional)</em>
  12400. <p>The provider for the CA bundle to use to validate webhook server certificate.</p>
  12401. </td>
  12402. </tr>
  12403. </tbody>
  12404. </table>
  12405. <h3 id="external-secrets.io/v1.WebhookResult">WebhookResult
  12406. </h3>
  12407. <p>
  12408. (<em>Appears on:</em>
  12409. <a href="#external-secrets.io/v1.WebhookProvider">WebhookProvider</a>)
  12410. </p>
  12411. <p>
  12412. </p>
  12413. <table>
  12414. <thead>
  12415. <tr>
  12416. <th>Field</th>
  12417. <th>Description</th>
  12418. </tr>
  12419. </thead>
  12420. <tbody>
  12421. <tr>
  12422. <td>
  12423. <code>jsonPath</code></br>
  12424. <em>
  12425. string
  12426. </em>
  12427. </td>
  12428. <td>
  12429. <em>(Optional)</em>
  12430. <p>Json path of return value</p>
  12431. </td>
  12432. </tr>
  12433. </tbody>
  12434. </table>
  12435. <h3 id="external-secrets.io/v1.WebhookSecret">WebhookSecret
  12436. </h3>
  12437. <p>
  12438. (<em>Appears on:</em>
  12439. <a href="#external-secrets.io/v1.WebhookProvider">WebhookProvider</a>)
  12440. </p>
  12441. <p>
  12442. </p>
  12443. <table>
  12444. <thead>
  12445. <tr>
  12446. <th>Field</th>
  12447. <th>Description</th>
  12448. </tr>
  12449. </thead>
  12450. <tbody>
  12451. <tr>
  12452. <td>
  12453. <code>name</code></br>
  12454. <em>
  12455. string
  12456. </em>
  12457. </td>
  12458. <td>
  12459. <p>Name of this secret in templates</p>
  12460. </td>
  12461. </tr>
  12462. <tr>
  12463. <td>
  12464. <code>secretRef</code></br>
  12465. <em>
  12466. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  12467. External Secrets meta/v1.SecretKeySelector
  12468. </a>
  12469. </em>
  12470. </td>
  12471. <td>
  12472. <p>Secret ref to fill in credentials</p>
  12473. </td>
  12474. </tr>
  12475. </tbody>
  12476. </table>
  12477. <h3 id="external-secrets.io/v1.YandexAuth">YandexAuth
  12478. </h3>
  12479. <p>
  12480. (<em>Appears on:</em>
  12481. <a href="#external-secrets.io/v1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>,
  12482. <a href="#external-secrets.io/v1.YandexLockboxProvider">YandexLockboxProvider</a>)
  12483. </p>
  12484. <p>
  12485. </p>
  12486. <table>
  12487. <thead>
  12488. <tr>
  12489. <th>Field</th>
  12490. <th>Description</th>
  12491. </tr>
  12492. </thead>
  12493. <tbody>
  12494. <tr>
  12495. <td>
  12496. <code>authorizedKeySecretRef</code></br>
  12497. <em>
  12498. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  12499. External Secrets meta/v1.SecretKeySelector
  12500. </a>
  12501. </em>
  12502. </td>
  12503. <td>
  12504. <em>(Optional)</em>
  12505. <p>The authorized key used for authentication</p>
  12506. </td>
  12507. </tr>
  12508. </tbody>
  12509. </table>
  12510. <h3 id="external-secrets.io/v1.YandexCAProvider">YandexCAProvider
  12511. </h3>
  12512. <p>
  12513. (<em>Appears on:</em>
  12514. <a href="#external-secrets.io/v1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>,
  12515. <a href="#external-secrets.io/v1.YandexLockboxProvider">YandexLockboxProvider</a>)
  12516. </p>
  12517. <p>
  12518. </p>
  12519. <table>
  12520. <thead>
  12521. <tr>
  12522. <th>Field</th>
  12523. <th>Description</th>
  12524. </tr>
  12525. </thead>
  12526. <tbody>
  12527. <tr>
  12528. <td>
  12529. <code>certSecretRef</code></br>
  12530. <em>
  12531. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  12532. External Secrets meta/v1.SecretKeySelector
  12533. </a>
  12534. </em>
  12535. </td>
  12536. <td>
  12537. </td>
  12538. </tr>
  12539. </tbody>
  12540. </table>
  12541. <h3 id="external-secrets.io/v1.YandexCertificateManagerProvider">YandexCertificateManagerProvider
  12542. </h3>
  12543. <p>
  12544. (<em>Appears on:</em>
  12545. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  12546. </p>
  12547. <p>
  12548. <p>YandexCertificateManagerProvider Configures a store to sync secrets using the Yandex Certificate Manager provider.</p>
  12549. </p>
  12550. <table>
  12551. <thead>
  12552. <tr>
  12553. <th>Field</th>
  12554. <th>Description</th>
  12555. </tr>
  12556. </thead>
  12557. <tbody>
  12558. <tr>
  12559. <td>
  12560. <code>apiEndpoint</code></br>
  12561. <em>
  12562. string
  12563. </em>
  12564. </td>
  12565. <td>
  12566. <em>(Optional)</em>
  12567. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  12568. </td>
  12569. </tr>
  12570. <tr>
  12571. <td>
  12572. <code>auth</code></br>
  12573. <em>
  12574. <a href="#external-secrets.io/v1.YandexAuth">
  12575. YandexAuth
  12576. </a>
  12577. </em>
  12578. </td>
  12579. <td>
  12580. <p>Auth defines the information necessary to authenticate against Yandex.Cloud</p>
  12581. </td>
  12582. </tr>
  12583. <tr>
  12584. <td>
  12585. <code>caProvider</code></br>
  12586. <em>
  12587. <a href="#external-secrets.io/v1.YandexCAProvider">
  12588. YandexCAProvider
  12589. </a>
  12590. </em>
  12591. </td>
  12592. <td>
  12593. <em>(Optional)</em>
  12594. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  12595. </td>
  12596. </tr>
  12597. <tr>
  12598. <td>
  12599. <code>fetching</code></br>
  12600. <em>
  12601. <a href="#external-secrets.io/v1.FetchingPolicy">
  12602. FetchingPolicy
  12603. </a>
  12604. </em>
  12605. </td>
  12606. <td>
  12607. <em>(Optional)</em>
  12608. <p>FetchingPolicy configures the provider to interpret the <code>data.secretKey.remoteRef.key</code> field in ExternalSecret as certificate ID or certificate name</p>
  12609. </td>
  12610. </tr>
  12611. </tbody>
  12612. </table>
  12613. <h3 id="external-secrets.io/v1.YandexLockboxProvider">YandexLockboxProvider
  12614. </h3>
  12615. <p>
  12616. (<em>Appears on:</em>
  12617. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  12618. </p>
  12619. <p>
  12620. <p>YandexLockboxProvider Configures a store to sync secrets using the Yandex Lockbox provider.</p>
  12621. </p>
  12622. <table>
  12623. <thead>
  12624. <tr>
  12625. <th>Field</th>
  12626. <th>Description</th>
  12627. </tr>
  12628. </thead>
  12629. <tbody>
  12630. <tr>
  12631. <td>
  12632. <code>apiEndpoint</code></br>
  12633. <em>
  12634. string
  12635. </em>
  12636. </td>
  12637. <td>
  12638. <em>(Optional)</em>
  12639. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  12640. </td>
  12641. </tr>
  12642. <tr>
  12643. <td>
  12644. <code>auth</code></br>
  12645. <em>
  12646. <a href="#external-secrets.io/v1.YandexAuth">
  12647. YandexAuth
  12648. </a>
  12649. </em>
  12650. </td>
  12651. <td>
  12652. <p>Auth defines the information necessary to authenticate against Yandex.Cloud</p>
  12653. </td>
  12654. </tr>
  12655. <tr>
  12656. <td>
  12657. <code>caProvider</code></br>
  12658. <em>
  12659. <a href="#external-secrets.io/v1.YandexCAProvider">
  12660. YandexCAProvider
  12661. </a>
  12662. </em>
  12663. </td>
  12664. <td>
  12665. <em>(Optional)</em>
  12666. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  12667. </td>
  12668. </tr>
  12669. <tr>
  12670. <td>
  12671. <code>fetching</code></br>
  12672. <em>
  12673. <a href="#external-secrets.io/v1.FetchingPolicy">
  12674. FetchingPolicy
  12675. </a>
  12676. </em>
  12677. </td>
  12678. <td>
  12679. <em>(Optional)</em>
  12680. <p>FetchingPolicy configures the provider to interpret the <code>data.secretKey.remoteRef.key</code> field in ExternalSecret as secret ID or secret name</p>
  12681. </td>
  12682. </tr>
  12683. </tbody>
  12684. </table>
  12685. <hr/>
  12686. <p><em>
  12687. Generated with <code>gen-crd-api-reference-docs</code>.
  12688. </em></p>
  12689. </article>
  12690. </div>
  12691. <script>var target=document.getElementById(location.hash.slice(1));target&&target.name&&(target.checked=target.name.startsWith("__tabbed_"))</script>
  12692. </div>
  12693. </main>
  12694. <img referrerpolicy="no-referrer-when-downgrade" src="https://static.scarf.sh/a.png?x-pxid=6658a9eb-067d-49f1-94f2-b8b00f21451e" alt=""/>
  12695. <footer class="md-footer">
  12696. <div class="md-footer-meta md-typeset">
  12697. <div class="md-footer-meta__inner md-grid">
  12698. <div class="md-copyright">
  12699. <div class="md-copyright__highlight">
  12700. &copy; 2025 The external-secrets Authors.<br/>
  12701. &copy; 2025 The Linux Foundation. All rights reserved.<br/><br/>
  12702. The Linux Foundation has registered trademarks and uses trademarks.<br/>
  12703. For a list of trademarks of The Linux Foundation, please see our <a href="https://www.linuxfoundation.org/trademark-usage/">Trademark Usage page</a>.
  12704. </div>
  12705. Made with
  12706. <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
  12707. Material for MkDocs
  12708. </a>
  12709. </div>
  12710. </div>
  12711. </div>
  12712. </footer>
  12713. </div>
  12714. <div class="md-dialog" data-md-component="dialog">
  12715. <div class="md-dialog__inner md-typeset"></div>
  12716. </div>
  12717. <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>
  12718. <script src="../../assets/javascripts/bundle.92b07e13.min.js"></script>
  12719. </body>
  12720. </html>